Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact
Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact

Posts tagged with "javascript"

Complete Guide to React Native Building a Feature Rich Todo App

Complete Guide to React Native Building a Feature Rich Todo App

15 March 202515 min readMobile Development

After working in the React ecosystem for a long time, I decided to venture into mobile app development. React Native was particularly appealing because it offered the ability to develop native mobile applications using my existing JavaScript and React knowledge.

#React Native#Mobile Development#Todo App+4 more
Traditional Functions vs Arrow Functions

Traditional Functions vs Arrow Functions

22 January 20256 min readWeb Programming

JavaScript provides two primary ways to define functions: Traditional Functions and Arrow Functions. While both serve the same fundamental purpose of executing tasks, they differ significantly in terms of syntax, behavior, and specific use cases.

#JavaScript#Arrow Functions#Traditional Functions
How to use Axios with React

How to use Axios with React

18 November 20235 min readWeb Programming

Axios is not a part of React; it can be used with any frontend framework. Axios is not your only option, but it is certainly one of the most popular. You can customize it according to your project's needs by using each of Axios's fundamental HTTP methods. Axios is a popular JavaScript library used for making HTTP requests...

#React#Axios#HTTP Requests+3 more
How to Use Async & Await in JavaScript

How to Use Async & Await in JavaScript

20 April 20234 min readWeb Programming

We have two keywords Async and Await. We use async in front of a function declaration or function expression. The async keyword is used to define a particular function as an asynchronous function. When we put the Async keyword at the beginning of our function, we get a promise.

#JavaScript#Async#Await+3 more
What is a Promise in JavaScript?

What is a Promise in JavaScript?

14 April 20234 min readWeb Programming

Promise is easier to write and implement than callbacks. A promise is simply an object that represents the completion or failure of a process. It's usually something that takes time. When we use a library like Axios we return a promise and when we request data from api this process may take time and this value may never come back...

#JavaScript#Promises#Asynchronous Programming+3 more
Scop Concept in Javascript

Scop Concept in Javascript

09 April 20234 min readWeb Programming

The concept of scope is quite easy and very important topic in javascript. So let's delve deeper into this issue. Scope is the ability of our other code pieces to access this value or not, depending on where the variable defined is located. In other words, we can access variables, objects, functions according to their scope...

#JavaScript#Scope#Variable Scoping+3 more
Previous123Next