I made an array of objects one of my objects has a property name: ‘rad’ when I print it to the console it shows the same name but when I expand it takes the name of another object in the array.
I wanted to change the background of the button using the name of the object, but it was not working so when I printed the object to the console to see what was wrong I saw that when I expanded it its name property was different.
{name: ‘rad‘, symbol: ‘Rad’, formula: false, type: ‘key’}
formula: false
name: “clear”
symbol: “Rad”
type: “key”
2