Top Categories
Advanced JavaScript Tutorial #6: Fat Arrow Function in JavaScript in Hindi | ES6 in Hindi
- Category:
- Sub Category:
Welcome all, we will see Fat Arrow Function in JavaScript in Hindi | ES6 in Hindi. An arrow function expression is a syntactically compact alternative to a regular function expression, although without its own bindings to the this, arguments, super, or new.target keywords. Arrow function expressi
Welcome all, we will see Fat Arrow Function in JavaScript in Hindi | ES6 in Hindi. An arrow function expression is a syntactically compact alternative to a regular function expression, although without its own bindings to the this, arguments, super, or new.target keywords. Arrow function expressions are ill-suited as methods, and they cannot be used as constructors. Arrow functions, introduced in ES6, provides a concise way to write functions in JavaScript. Another significant advantage it offers is the fact that it does not bind its own this. In other words, the context inside arrow functions is lexically or statically defined.