Javascript examples for Object:Quiz
Display first name by extracting information from the person object.
<!DOCTYPE html> <html> <body> <p id="demo"></p> <script> var person = {firstName:"A", lastName:"B"}; document.getElementById("demo").innerHTML = person.firstName; </script>//from w w w . j a v a 2s . com </body> </html>