en.javascript.info/1-js/4-data-structures/5-object-for-in/2-sum-salaries/task.md
2015-01-11 01:54:57 +03:00

23 lines
No EOL
562 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Сумма свойств
[importance 5]
Есть объект `salaries` с зарплатами. Напишите код, который выведет сумму всех зарплат.
Если объект пустой, то результат должен быть `0`.
Например:
```js
"use strict";
var salaries = {
"Вася": 100,
"Петя": 300,
"Даша": 250
};
//... ваш код выведет 650
```
P.S. Сверху стоит `use strict`, чтобы не забыть объявить переменные.