let items = accordion.querySelectorAll('.accordion__item');
// другими словами вот так вот
items.сделать_с_каждым(function это_действие(item) {
if (thisItem == item ) {
// если кликнули тут
thisItem.classList.toggle('active');
return;
}
// кликнули по другому
item.classList.remove('active');
});
откуда взялся question на 19 строчке?
Service.updateOne(
{ services: 1 /* * */ },
{ $unset: { '4': '' } }
)
// не сработает, потому что я не понимаю, как именно выделить этот документ
changePostText = e => { console.log(this.props) }
// или
onChange={this.changePostText.bind(this)}
function upper(obj) {
return Object.keys(obj).map(key => key.toUpperCase())
}
автоматическое определение адреса отправления, то есть текущих координат человека?
function getCoords() {
function success(position) {
const latitude = position.coords.latitude;
const longitude = position.coords.longitude;
// это можно куда-нибудь сохранить, в сторадж или переменную
const href = `https://www.google.com/maps/search/${latitude},${longitude}`
console.log(href)
}
function error() {
console.log('Unable to retrieve your location')
}
if(!navigator.geolocation) {
console.log('Geolocation is not supported by your browser')
} else {
navigator.geolocation.getCurrentPosition(success, error);
}
}
getCoords()
match = "<?if($USERNAME$='artemchalysh')?>26.09.2021<?endif?>".match(/\$='(.+).\)\?>(.+)<\?/)
match[1]
match[2]
console.log(error)
Проблема только в массиве с [0,0,0,0]
function getDuplicates(items) {
const sortedArr = items.slice().sort();
const results = new Set(); // <= только уникальные
for(let i = 0; i < sortedArr.length; i++) {
if(sortedArr[i + 1] == sortedArr[i]) {
results.add(sortedArr[i]); // <= добавится в Set только один раз
}
}
return Array.from(results);
}
что бы мне получить весь документ картинки canIHelpSection.directionsOfDevelopment.img мне нужно сделать популейт.
И вот я делаю популейт и получается что весь canIHelpSection мне отдается, но при том что я его не запрашиваю, в select('firstSection') написано
user.markModified('playLists')
// или это
// user.markModified('playLists.files')