Question 1
Consider the following Script embedded in an HTML document.
let langName = 'Python';function showLanguage() { let langName = "JavaScript"; let message = 'Learn ' + langName; console.log(message);}
let message = 'Learn ' + langName;console.log(message)console.log(showLanguage());What will be the output on console, if the HTML document is rendered using a browser?