HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <script> const bike = {company:"Honda", model:"CBR 1000RR"}; //Add property bike.color="Red"; //Change property bike.model="Gold Wing"; //Delete property delete bike["company"]; document.write("I went to "+bike.company+" Showroom"); document.write("<br>I purchased "+bike.model); document.write("<br>Which is "+bike.color+" in color"); </script> </body> </html>
OUTPUT
×

Save as Private