자바스크립트 속기

JavaScript는 웹 개발에서 가장 널리 사용되고 가장 빠르게 성장하는 언어 중 하나입니다. 개발자는 처리 리소스와 함께 시간을 절약하기 위해 최고의 코딩 방법을 사용해야 합니다. 다음은 개발자가 시간을 절약하는 데 사용할 수 있는 몇 가지 속기입니다.

질문이나 문의 사항이 있으면 ping을 보내주세요.

1. 삼항 연산자



대신에

if (number > 5) {
     result = 'Yes'
} else {
     result = 'No'
}


사용

const result = number > 5 ? 'Yes' : 'No'



2. 거짓 속기



대신에

if (value !== null || value !== undefined || value !== ''){
     new_value = value
}


사용

new_value = value || 'Hello'



3. 변수 선언



대신에

let x
let y
let z = 5


사용

let x, y, z=5



4. For 루프 속기



대신에

const names = ['Mursal', 'Furqan', 'Ali', 'Imran']

for (let i = 0; i < names.length; i++){
     console.log(names[i])
}


사용

const names = ['Mursal', 'Furqan', 'Ali', 'Imran']

for (let name of names){
     console.log(name)
}



5. 개체 속성



대신에

let x=1, y=2
let object = {x:x, y:y}


사용

let x=1, y=2
let object = {x, y}
// You can omit the member name
// If it's same as the variable name



6. 기본 매개변수



대신에

function volume(a, b, c){
     if (a === undefined){
          a = 0
     }
     if (b === undefined){
          b = 0
     }
     if (c === undefined){
          c = 0
     }
     return a*b*c
}


사용

let volume = (a=0, b=0, c=0) => (a*b*c)



7. Double Bitwise Not



대신에

Math.floor(4.9) // => 4


사용

~~4.9 // => 4



8. 단락



대신에

let dbHost
if (process.env.DB_HOST){
     dbHost = process.env.DB_HOST
} else {
     dbHost = 'localhost'
}


사용

let dbHost = process.env.DB_HOST || 'localhost'

좋은 웹페이지 즐겨찾기