4.1.3 공백
잘못된 예
var funds = 10;
if (funds > 1) { // 블록문
console.log("There's money left!");
console.log("That means keep playing");
} else // 블록 없는 문
console.log("I'm broke! Time to quit.");Last updated
var funds = 10;
if (funds > 1) { // 블록문
console.log("There's money left!");
console.log("That means keep playing");
} else // 블록 없는 문
console.log("I'm broke! Time to quit.");Last updated