Menu
×
×
Correct!
Exercise:Change the "year" value from 1964 to 2020.
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
@(11) = @(4)
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
car["year"] = 2020
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
car['year'] = 2020
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 95 exercises.
Are you sure you want to continue?