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 "programming-concepts"

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
This Keyword in JavaScript

This Keyword in JavaScript

02 April 20234 min readWeb Programming

This keyword is the scariest part of JavaScript. Yes, this is one of the most confusing topics so why is this confusing? because its value can sometimes seem unpredictable. There are rules that determine the value of this structure, and once we learn these rules, the concept of this will not confuse us.

#JavaScript#this Keyword#Programming Concepts+3 more
What is a Callback Function in JavaScript

What is a Callback Function in JavaScript

31 March 20232 min readWeb Programming

Callbacks are functions passed to other functions to be called inside the outer function. it is any function called by another function using a parameter. when we pass a function to another function and it is executed in that function, we can call it a callback.

#JavaScript#Callback Function#Programming Concepts+3 more