DD
Size: a a a
DD
AE
AB
AE
j
j
F
TT
F
TT
VV

(function () {
console.log('init ga');
window.dataLayer = window.dataLayer || [];
function gtag() {
console.log('gtag');
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', process.env.TRACKING_ID);
console.log('after gtag');
})();
ReferenceError: process is not defined
F
TT
F
TT
TT
DS
^@\/((?!(@\/tests)).)*$^@\/((?!(@tests)).)*$, для @tests. Но мне нужно исключить именно @/testsF
const months = 'Январь,Февраль,Март,Апрель,Май,Июнь,Июль,Август,Сентябрь,Октябрь,Ноябрь,Декабрь'.split(',')
const startMonth = 2, // Март
startSum = 1000,
percent = 1.02
for(let i = 0; i <= 12; i++) {
const totalSum = startSum * percent ** i,
currentMonth = months[(startMonth + i) % 12]
console.log('Сумма вклада на', currentMonth, 'составляет', totalSum.toFixed(2), 'руб.')
}