let chunks = []; for (let i = 0, charsLength = str.length; i < charsLength; i += 3) { chunks.push(str.substring(i, i + 3)); }