hlubing
hlubing
var str110 = '1,2,3,5,7,8,10' var array110 = str110.split(',') let arrResult = [] let tmp = 1 for (let i in array110) { let item = parseInt(array110[i]) let item1 = parseInt(array110[parseInt(i)...
``` const str114 = 'abcaakjbb'; let r = str114.substr(1) const obj114 = str114.split('').reduce((pre, current) => { if (r === current) { pre[current] += 1 } else { pre[current] = 1...
function fun111(entry) { let array111 = {} function fun111_1 (entry, f) { for (let i in entry) { let t = f ? `${f}.${i}` : i if (typeof entry[i] ===...