const props = ['prop1', 'prop2', ... , 'prop5'];
let i = 0;
const n = props.length;
console.log(
`твой хтмл в виде текста`.replace(/td itemprop=""/g, () => {
const newProp = `td itemprop="${props[i]}"`;
i = (i + 1) % n;
return newProp;
})
);
if (cell == 1) {
ctx.fillStyle = 'red'
} else if (cell == 2) {
ctx.fillStyle = 'green'
} else {
ctx.fillStyle = 'white' // устанавливается белый, пишется белым
}
. ctx.font = "36px serif"
+ ctx.fillStyle = "black"
- ctx.strokeStyle = "black"
ctx.fillText("Hello world", 100, 100)