diff --git a/BgColorChanger/saurabh-s10/app.js b/BgColorChanger/saurabh-s10/app.js index 9b9829433..23954ffe5 100644 --- a/BgColorChanger/saurabh-s10/app.js +++ b/BgColorChanger/saurabh-s10/app.js @@ -3,6 +3,6 @@ const bge = document.querySelector('section'); button.addEventListener('click',() => { let col = "#"; - col+=Math.random().toString(16).slice(2,8); + col+=Math.random().toString(16).slice(2); bge.style.backgroundColor = col; -}) \ No newline at end of file +})