#52 JavaScript Bangla Tutorial | Arrow Functions

preview_player
Показать описание
In this Part 52 video of JavaScript Bangla Tutorial Series for Beginners, I have explained about JavaScript arrow functions.

References:

কোন প্রশ্ন থাকলে comment section এ comment করতে পারেন। সেই সাথে আমাদের একটি Facebook Group আছে। সেখানেও আপনার প্রশ্ন করতে পারেন। সব প্রয়োজনীয় link নিচে দেয়া হলো -

#javascript #js
Рекомендации по теме
Комментарии
Автор

Understanding the arrow functions and the normal function uses. Thank you LWSB ❤️

webdevsumon
Автор

Impressive brother !! w3school এর এই লেসনটা বুঝতে বেশ কষ্ট হচ্ছিল, ভিডিও টিউটোরিয়ালটা কঠিন বিষয়টিকে আমার জন্য সহজ করে দিল। অসংখ্য ধন্যবাদ ।

mHas
Автор

Thanks for the detailed video Dada. Very informative💖 Watch Date: 28-12-2023

MarufHasanShihab
Автор

dhonnobad jonno valobasa thakbe aj ariyar prothom jonmodin

sabbirhossen
Автор

function type korte j time lage thar theke beshi time lage = > sign gulo khujte

mohammadsayem
Автор

vai ah Java Script er Local Storage nia akta video koren

mycoadedlife
Автор

ধন্যবাদ ভাইয়া....watch date: 7 aug 2022

ArshihasWorld
Автор

এই ফংশনটি আগেও চিনতাম তবে বুঝতাম না শুধু মাথা ঘুরতো..

BrightSkills
Автор

Understanding the difference between Arrow function and Normal function isn't clear from your tutorial Sir.

dipbhowmik
Автор

let myObj = {
x: 10,

regularFunc() {
console.log(this.x); // return 10
},

arrowFunc: () => console.log(this.x), // return undefined
// because here binding between this and object will not work
};
myObj.regularFunc();
myObj.arrowFunc();

mohammadsayem