mongoose.set('debug', true)
Но все же первый вопрос мне не понятен, почему нельзя объявить переменную внутри цикла, и присваивать ей значения массива
for(let i = 0; i < 10; i++) {
var summary = summary || 0;
summary += i;
}
console.log(summary);
function promiseWrapper(url) {
return new Promise(resolve => {
const xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.send();
xhr.onload = () => {
resolve(xhr.response);
};
});
}
async function getData() {
const [res1] = await promiseWrapper(url1);
const [res2] = await promiseWrapper(url2);
return res1 + res2;
}
function Охранник() {
this.name = "Штирлиц";
this.password = "У вас продается славянский шкаф?";
}
Охранник.prototype.проверяй = function(name, password) {
return this.name == name && this.password == password;
};
let Василий = new Охранник()
Василий.проверяй('Штирлиц', 'У вас продается славянский шкаф?')
<script type="text/javascript">
var asdasd = <?php echo $variable; ?>;
</script>