[Javascript căn bản]Function trong Javascript

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

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

Bài viết liên quan

WebP là gì? Hướng dẫn cách để chuyển hình ảnh jpg, png qua webp

WebP là gì? WebP là một định dạng ảnh hiện đại, được phát triển bởi Google

Điểm khác biệt giữa IPv4 và IPv6 là gì?

IPv4 và IPv6 là hai phiên bản của hệ thống địa chỉ Giao thức Internet (IP). IP l

Check nameservers của tên miền xem website trỏ đúng chưa

Tìm hiểu cách check nameservers của tên miền để xác định tên miền đó đang dùn

Mình đang dùng Google Domains để check tên miền hàng ngày

Từ khi thông báo dịch vụ Google Domains bỏ mác Beta, mình mới để ý và bắt đầ