Run ❯
Get your
own
website
Result Size:
625 x 565
❯
Run Code
Ctrl+Alt+R
Save Code
Ctrl+Alt+A
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
<!DOCTYPE html> <html> <body> <h1>Creating JavaScript Objects</h1> <h2>Using an Object Literal</h2> <p id="demo"></p> <script> // Create an empty Object const person = {}; // Add Properties person.firstName = "John"; person.lastName = "Doe"; person.age = 50; person.eyeColor = "blue"; // Display Data from Object document.getElementById("demo").innerHTML = person.firstName + " is " + person.age + " years old."; </script> </body> </html>