This file contains hidden or 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
| // === БАЗОВЫЙ СИНТАКСИС JS: ФИНАНСОВЫЙ МЕНЕДЖЕР === | |
| let balance = 10000; // начальный баланс | |
| const currency = "RUB"; // валюта | |
| let transactions = []; | |
| // Примеры начальных транзакций | |
| transactions = [ | |
| { id: 1, type: "расход", category: "еда", amount: 500, date: "2024-01-15", description: "Обед в кафе" }, | |
| { id: 2, type: "доход", category: "зарплата", amount: 30000, date: "2024-01-10", description: "Зарплата за январь" }, |