유용한 자바스크립트 팁
!!연산자를 사용하여 boolean 변환 function Account(cash) { this.cash = cash; this.hasMoney = !!cash; } var account = new Account(100.50); console.log(account.cash); // 100.50 console.log(account.hasMoney); // true var emptyAccount = new Account(0); console.log(emptyAccount.cash); // 0 console.log(emptyAccount.hasMoney); // false +연산자를 사용하여 숫자 변환 function toNumber(strNumber) { return +strNumber; } console.l..
2020년 01월 03일