
Category: JavaScript


JS Projects for Beginner – Get Random Quote – Get a grip Javascript
The Random Quotes project is fairly simple. Create a simple page with button, When the “Generate Quote” button is pressed, it triggers a change in quote and the author name. In this project i am getting the quotes from api via promise call and update the quote colletion. When the “Generate Quote” button is pressed, respective HTML control value get updated. It uses Math.Floor() and Math.random() methods to display random quotes accross project. for the … Continue reading JS Projects for Beginner – Get Random Quote – Get a grip Javascript

JS Projects for Beginner – Change page background colour
Create a simple html page, Implement the JavaScript code such that every time the button is clicked on html page, the background colour of page should change. Problem Statement credit: https://jsbeginners.com/javascript-projects-for-beginners/ Solutions: https://maheshdeshmane.github.io/js-change-background-color/ Html Simple html page one button with ‘btn’ id JS code: In script, I have added event listener for button and on click inside function gets called, Function creates a rgb colour value … Continue reading JS Projects for Beginner – Change page background colour