Skip to content

Commit fbfe07c

Browse files
authored
Update source.js
1 parent 8aec4a9 commit fbfe07c

File tree

1 file changed

+3
-4
lines changed
  • 1-js/04-object-basics/01-object/8-multiply-numeric/_js.view

1 file changed

+3
-4
lines changed
Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
let menu = {
22
width: 200,
33
height: 300,
4-
title: "My menu"
4+
title: "O meu menu"
55
};
66

77

88
function multiplyNumeric(obj) {
99

10-
/* your code */
10+
/* o seu código */
1111

1212
}
1313

1414
multiplyNumeric(menu);
1515

16-
alert( "menu width=" + menu.width + " height=" + menu.height + " title=" + menu.title );
17-
16+
alert( "largura do menu=" + menu.width + " altura=" + menu.height + " título=" + menu.title );

0 commit comments

Comments
 (0)