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 "functions"

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