myClients = [];
wss.on('connection', function(ws) {
myClients.push(ws);
});
dateField.setRangeStart(fromDate);
dateField.setRangeEnd(toDate);
То есть если валидация проходит, то данные записываются в соответствующее поле класса?
sting.replaceAll("\\D+", "");
import java.util.regex.Matcher;
import java.util.regex.Pattern;
class Main {
public static void main(String[] args) {
String string = "[апваварпвава, авпварпваавр, варварвра54%]";
Pattern pattern = Pattern.compile("\\d+");
Matcher matcher = pattern.matcher(string);
while(matcher.find()) {
System.out.println(matcher.group(0));
}
}
}
NOTE: windows.h/winbase.h must be #included first
. Как минимум, windows.h содержит в себе это, что по ходу TlHelp32.h используется неоднократно:#define WINAPI
// сделать 1 функцию
const popupTitle = advertElement.querySelector('.popup_title');
popupTitle.textContent = offer.title;
const poputTitleContent = title => {
const popupTitle = advertElement.querySelector('.popup_title');
popupTitle.textContent = title;
};
function poputTitleContent(title) {
const popupTitle = advertElement.querySelector('.popup_title');
popupTitle.textContent = title;
}
similarOffers.map(({author, offer}) => {
poputTitleContent(offer.title);
// ... остальной код
};
const a = [1, 2, 1, 2, 3, 1, 1, 2, 3];
const d = [];
for (let i = 0; i < a.length; i++) {
a[i] === 1 ? d.push([1]) : d[d.length - 1].push(a[i]);
}
console.log(d); // [ [ 1, 2 ], [ 1, 2, 3 ], [ 1 ], [ 1, 2, 3 ] ]
const a = [1, 2, 1, 2, 3, 1, 1, 2, 3];
const d = [];
a.map(el => {
el === 1 ? d.push([1]) : d[d.length - 1].push(el);
});
console.log(d);