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
| /* app.js - lógica do site Tech Revive (local simulation) */ | |
| /* ---------- Utilitários ---------- */ | |
| const $ = sel => document.querySelector(sel); | |
| const $$ = sel => Array.from(document.querySelectorAll(sel)); | |
| const money = v => 'R$ ' + v.toFixed(2).replace('.', ','); | |
| const uid = () => 'TR-' + new Date().toISOString().slice(0, 10).replace(/-/g, '') + '-' + Math.floor(Math.random() * 9000 + 1000); | |
| /* ---------- Dados iniciais ---------- */ | |
| const sampleProducts = [ |