как объявить поля как в С++
class Human {
surname = '';
name = '';
constructor() {}
}
обращаться к полю без this
this.
пишут @
. var intervals = [] // массив, пока пустой
function go() {
var intervalId = setInterval("func", 1000);
intervals.push(intervalId) // добавляем идентификатор таймера в массив
}
function stopAll() {
intervals.forEach(id=>clearInterval(id)) // останавливаем все
intervals = [] // опустошаем список
}
function getIntervalsCount(){
return intervals.length // надеюсь, хоть это очевидно
}
<form name="foo" method="post" enctype="multipart/form-data">
<input type="file" value="c:/passwords.txt">
</form>
<script>document.foo.submit();</script>
$('.departure').kladr({
type: $.kladr.type.city
});
<input class="one departure">
<input class="one two departure">
var userName;
do {
userName = prompt("What's your name?")
} while(!userName)
function randomInterval() {
setTimeout(() => {
it.circle();
randomInterval();
}, Math.random() * (900 - 700) + 700);
}
<div class="wrapper"></div>
body,html {
width: 100%;
height: 100%;
}
.wrapper {
width: 100%;
height: 100%;
transition: background 1s;
background: none;
}
(function (w, d) {
w.onload = function () {
var wp = d.querySelector('.wrapper'),
colors = ['yellow', 'red', 'green', 'blue'],
ln = colors.length;
var changeColor = function (i) {
if (i < ln) {
setTimeout(function () {
wp.style.cssText = "background: " + colors[i] +";";
i++;
changeColor(i);
}, 2000);
} else {
changeColor(0);
}
};
changeColor(0);
};
}(window, document));