In utils.js , after writing the code function showMessage(message){ document.getElementById('message').textContent = message; } and home.js showMessage("Hello"); After saving it , its not reflecting in the webpage <img width="1280" alt="image" src="https://user-images.githubusercontent.com/78179867/160504590-337423f4-95b0-47e0-beda-5621801a4a47.png">
In utils.js , after writing the code
function showMessage(message){
document.getElementById('message').textContent = message;
}
and home.js
showMessage("Hello");
After saving it , its not reflecting in the webpage