I'm learning programming with <canvas>. I want to set the RGBa value of the rectangle using a variable.
for example,
var r_a = 0.3; ctx.fillStyle = "rgba(32, 45, 21, r_a)";
which doesn't work. But ctx.fillStyle = "rgba(32, 45, 21, 0.3)"; does work.
Apparantly fillStyle only accepts a string. So how do I set a value of the rgba value using some variable instead of explicitly defining the values?