Skip to content

Instantly share code, notes, and snippets.

View akibraza91's full-sized avatar
🎯
Focusing

Akib Raza akibraza91

🎯
Focusing
View GitHub Profile
Writing into an HTML element, using-------- innerHTML.
Writing into the HTML output using------- document.write().
Writing into an alert box, using-------- window.alert().
Writing into the browser console, using------ console.log().
<!---- Object ---->
<p id="demo"></p>
const person = {firstName:"Alex", lastName:"Walker", age:"24", contact:"9658754856", country:"Norway"};
document.getElementById("demo").innerHTML = person.firstName + " " + person.lastName + " is " + person.age;