3회차
Truty & Falsy // False : undefine, null , "" , 0, 0.0,NaN // True : 그외 let a = ""; if (a) { console.log("True"); } else { console.log("False"); } const getName = (person) => { if (!person) { return "객체가 아닙니다" } }; let person = { name: "김수현" }; const name = getName(person); console.log(name); 삼항연산자 // 삼항 연산자 let a = 3; if (a>0){ console.log("양수") } else{ console.log("음수") } a>0 ? console.log('양수'..
JavaScript&React
2023. 1. 6. 18:58