less than 1 minute read

오브젝트 사용법

var jbRandom = Math.random();
var jbRandom = Math.floor(jbRandom * 10 ); 
var profile ={
    name : "obo", id : "happyOBO"
};
if(jbRandom < 5)
{
    document.body.innerText = profile.name+"의 ID : "+ profile.id;
    
};
if(jbRandom >= 5)
{
    document.body.innerText = profile.id+"의 이름 : "+profile.name;
};
console.log(jbRandom);