let page = "temp";
function showPage()
{
alert(page); // temp or HTML Page
}
When I tried it, the result was "HTML Page", which makes sense. Is 'page' an object, reserved word, or a constant?
If 'page' is an object, shouldn't I be able to modify it? If it's a reserved word, wouldn't JavaScript throw an error? And if it's a constant, how can I make changes to the DOM using only page
access?