boolean으로 형 변환. 0을 false로, 1을 true로.
let a = 0;
console.log(a); // 0
console.log(!a); // true
header,nav,section,div,footer,ul,dd {margin:0;padding:0;} | |
li{list-style: none;} | |
ul{ | |
width: 100%; | |
} | |
dt { | |
font-weight: bold; | |
font-size: 1.2em; | |
margin-bottom: 5px; | |
} |
var healthObj = { showHealth : function() { | |
console.log(this.name + "-" + this.lastTime) | |
} | |
} | |
function makeObject(obj,proto){ | |
Object.keys(obj).forEach(function(key){ | |
obj[key] = { | |
value : obj[key] |