JavaScript 단락이란 무엇입니까?
자바스크립트 단락에서는 나머지 조건의 결과가 이미 평가된 결과에 영향을 미치지 않는다는 것이 확인될 때까지 식을 왼쪽에서 오른쪽으로 평가합니다.
그리고 단락에는 2가지 유형이 있습니다.
그리고 단락
무언가가 거기에 있다면 이 특정 작업을 좋아하거나 당신이 여기 있으면 내가 갈 것이라고 말할 때. 🙄 여기서 혼란스러워 보인다는 것을 압니다. 이제 실제 사례를 살펴보겠습니다.
const iAmAStudent = true;
iAmAStudent && console.log('Yes you are a student!');
So here we saw the and short circuit example, there is a log with iAmAStudent value when true. 😎
또는 단락
현재 💝에 있는 사람을 선택하기 위한 결정일 때 실행됩니다. 이것은 실제로 컨디셔닝 단계 값입니다.
const HOST = process.env.HOST || 'localhost';
console.log(HOST);
Here we can see the useful example of or short circuit. If you have the value of process.env.HOST so okay it’s fine 🙃 but if you don’t has the .env value so it will set the ‘localhost’ for you.
Reference
이 문제에 관하여(JavaScript 단락이란 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/asadanik/what-is-javascript-short-circuit-353j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)