JavaScript is the world’s most popular programming language. JavaScript is the programming language of the Web.
we will learn about how the JAVASCRIPT MAKES WEB PAGES MORE INTERACTIVE.
expression An evaluates into (results in) a single value.
var color = 'beige';
var area = 3 * 2;
Expressions rely on things called operators;
Functions consist of a series of statements that have been grouped together because they perform a specific task.
note: function is only ca lled on the last line of this script.
var msg = 'Sign up to receive our newsletter for 10% off!';
function updateMessage() {
var el = document.getElementByld('message'};
el .textContent = msg;
}
updateMessage(};