Modificar objetos usando notación de puntos
var player = {
name: 'Victor',
color: 'blue',
score: 150,
}
Clean Caterpillar
var player = {
name: 'Victor',
color: 'blue',
score: 150,
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Objects</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>