showing results for - "javascript array of all characters"
Katherine
13 Jan 2016
1let utf8 = [];
2for(i=0; i<1000000; i++){
3	utf8.push(String.fromCharCode(i));
4}
5
6console.log(utf8);