all reset
☀ Lights
Netbax Online Editor Try it Yourself
Run
HTML
reset
copy
Js
JAVASCRIPT
reset
copy
var moto = {}; moto.brand = "harley davidson,"; moto.year= "2022"; moto.model= "Lineup,"; moto.cover= "
"; document.writeln("brand: " + moto['brand']); document.writeln("model: " + moto.model); document.writeln("year: " + moto.year); document.writeln(moto.cover);