I was wondering if it’s possible to push values to an object like in Arrays:
array.push("value");
I wanna give each color a letter like a, b, c, ..
It should be like:
var colors = { "a" : "ffffff", "b" : "000000" };
How can I add now other colors with letters to this?
Simple as:
Hope that helps.