please tell me if these symbols are accessible or not Or I have to bind them to variable and then bind it to the object
let obj = {
val1: 123,
val2: 124,
val3: 125,
}
obj[Symbol("value")] = 31;
obj[Symbol("value")] = 621;
console.log(obj)
// val1: 123
// val2: 124
// val3: 125
// Symbol(value): 31
// Symbol(value): 21
Thanks yall;