Why is my starry night sky drawing an invisible moon?
const ctx = document.querySelector('canvas').getContext('2d');
ctx.fillStyle = '#fffa65';
ctx.arc(100, 100, 40, 0, Math.PI * 2);
ctx.fill();
Reply with what is broken and how you would fix it.
Why is my starry night sky drawing an invisible moon?
const ctx = document.querySelector('canvas').getContext('2d');
ctx.fillStyle = '#fffa65';
ctx.arc(100, 100, 40, 0, Math.PI * 2);
ctx.fill();
Reply with what is broken and how you would fix it.
:: Copyright KIRUPA 2024 //--