let person = {
name: 'muhammed',
num: 01234
}
console.log(person.num)
the answer should be 01234 but it is 668 why?
let person = {
name: 'muhammed',
num: 01234
}
console.log(person.num)
the answer should be 01234 but it is 668 why?