dataType: 'json'
в объекте ajax и в функцию success передастся уже не строка json, а объект JavaScript let endChar = $("h1").text().substr(-1);
let text = $("h1").text();
for(let i = 0; i < text.length; i++){
if (i == text.length - 1) console.log(text[i]);
}
function solution(arr){
return arr.sort( (a, b) => a <b )
}
console.log(solution([2,3,3,5,5,5,4,12,12,10,15]))
$(function() {
$(window).resize(onRes);
onRes();
function onRes() {
if ($(window).width() <= 1050) {
$('.popup__list').on('click', 'a[href=""]', function(e) {
e.preventDefault();
$(this).next('.popup__submenu').slideToggle();
});
}
}
});