here is my code:
let font = {
info: {
height: 5,
width: 5,
margin: 1,
},
A: [" ### ", "# #", "#####", "# #", "# #"],
a: [" ### ", "# #", "#####", "# #", "# #"],
B: ["#### ", "# #", "#### ", "# #", "#### "],
b: ["#### ", "# #", "#### ", "# #", "#### "],
C: [" ####", "# ", "# ", "# ", " ####"],
c: [" ####", "# ", "# ", "# ", " ####"],
};
I want to set the value of a
to A
, how do I do that?
I've tried a: this.A
, a: font.A
and a: ( function(){ return this.A } )()
, but no one worked