Bài viết note kiến thức lập trình Javascript căn bản
1. Global scope vs function scope
let myName ="longnguyen.dh";//global scopefunctionhello(){let myName2 ='longdhn.lk';//function scope
console.log(myName);}
console.log(myName2);//error
- Function scope chỉ truy xuất bên trong function, ra ngoài sẽ báo lỗi.
- Global scope truy xuất cả trong và ngoài function.
2. Closure
- Lexical scope sẽ định nghĩ scope của biến đó bởi vị trí của biến trong vị trí của chúng ta.
let newName ='Long Nguyen';//global scopefunctionsayHello(){let message ='Hi';//block scope
console.log(`${message}${newName}`);}sayHello();
- Closure là nhiều function được lồng vào nhau. Cho phép chúng ta truy xuất funciton bên trong ra function bên ngoài. Closure được tạo khi mỗi khi function được tạo.
functionsayHello2(){//parent functionlet message ='Hi';functionsayHi(){//child function
console.log(message);}return sayHi;}let hello =sayHello2();hello();
Giải thích: function sayHi bên trong có quyền truy xuất biến message của function sayHello2 bên ngoài.
- Function con có thể truy xuất scope của function cha.
functionsayHello3(message){return funciton hiYourName(name){
console.log(`${message}${name}`);};}let hello =sayHello3('Welcome to javascript');hello('function');//Welcome to javascript function
functionanotherFunction(){let anotherMessage ='hello';functionsayHi(){//child function
console.log(anotherMessage);}return sayHi;}let callFunc =anotherFunction();
3. Arrow function
- Arrow function cũng là function là kiểu function ẩn danh – anonymous function – function không có tên. Ra đời từ 2015 ECMAScript.
constsquare=function(x){return x * x;}square(5);//25
- Arrow function ngắn gọn hơn
constsquare=(x)=>{return x * x;}square(5);//25
- Rút gọn khi return đơn giản
constsquare=(x)=> x * x;square(5);//25
Nguồn:
https://www.youtube.com/channel/UC8vjHOEYlnVTqAgE6CFDm_Qhttps://kt.city/course/tu-hoc-javascript-hieu-qua-va-de-dang-danh-cho-nguoi-moi
Nguồn: viblo.asia