훌륭한 자바스크립트 개발자는 이렇게 합니다👇
// Declaring at the beginning
let alpha, beta, omega
// Use them at later stage
alpha = " the leaders"
beta = "followers"
omega = "viewers"
// Declaring and initiate at the beginning
let alpha = "The leaders"
let beta = "Followers"
const omega = "Viewers"
const 없이
let teacher = {name:"Mursal", subject:"IT"}
teacher = "He who teaches"
const로
const teacher = {name:"Mursal", subject:"IT"}
//Throws an error at this line since not possible
teacher = "He who teaches"
let x = "Hello" // type = string
let x = 5 // change: type = int
좋은 해결책은 나중에 재할당하지 않으려는 모든 변수를 const 키워드로 선언하는 것입니다.
function (a=1, b=2){
/*function code/
}
이제 인수가 누락되면 기본값이 사용되며 코드가 중단되지 않습니다.
Reference
이 문제에 관하여(훌륭한 자바스크립트 개발자는 이렇게 합니다👇), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mursalfk/good-javascript-developers-do-this-4nd3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)