JAVASCRIPT

삼항연산자 예문 추가

Made Project 2020. 6. 5. 14:26

isNightTime ? console.log('Turn on the lights!') : console.log('Turn off the lights!');

 

isNightTime이 참이면 'Turn on the lights!' 나머지면 'Turn off the lights!

 

예문을 통해서 삼항연산자를 이해하는게 더 빠른거 같다.