Last active
September 3, 2019 18:02
-
-
Save moiz-frost/fab412572c092ff15e14ba667b1b6351 to your computer and use it in GitHub Desktop.
Car Object JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var car = { | |
year: '2010', | |
make: 'Honda', | |
color: 'White', | |
transmission: 'Manual', | |
horsePower: 140, | |
topSpeed: 120 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment