자바스크립트 8 팁과 요령 자바스크립트를 적게 작성하는 방법 🙂
9791 단어 webdevjavascriptbeginnersreact
1. 변수 선언
보통 필기법
let firstName;
let lastName;
let surName = "beast";
속기
let firstName, lastName, surName = "beast";
2. 삼항 연산자
보통 필기법
let answer, value = 15;
if(value%2 = 0)
{
answer = "Number is even";
}else{
answer = "Number is not even";
}
속기
let answer = value&2 = 0 ? "Number is even" : "Number is not even"
3. 삼항 짧은 For-Loop
보통 필기법
const languages = ["html","css","js"];
for(let i = 0;i < language.length;i++){
const languages = languages[i];
console.log(languages);
}
속기
for(let languages of languages)console.log(languages);
4. 템플릿 리터럴
보통 필기법
const fullName = "codingBeast";
const timeOfDay = "afternoon";
const greeting = "Hello" + fullName + ", I wish you a good" + timeOfDay + "!";
속기
const greeting = `Hello ${fullName}, I wish you a good ${timeOfDay}`;
5. 할당 연산자
보통 필기법
a = a+b;
a = a-b;
속기
a += b;
a -= b;
6. 객체 배열 표기법
보통 필기법
let arr = new Array();
arr[0] = "html"
arr[1] = "css";
arr[2] = "js";
속기
let arr = ["html","css","js"];
7. 화살표 기능
보통 필기법
function addition(a,b){
console.log("addition",a + b);
}
속기
addition = (a,b) => console.log("addition", a + b);
8. 동일한 키와 값
보통 필기법
const userDetails = {
name: name, // key:value
email: email,
age: age,
location: location,
};
속기
Reference
이 문제에 관하여(자바스크립트 8 팁과 요령 자바스크립트를 적게 작성하는 방법 🙂), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/shubhamathawane/javascript-8-tips-and-tricks-to-write-less-javascript-26p9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)