Help to write the Armenian Alphabet in javascript via CharCode

    1 answer 1

    According to the table , Armenian symbols go in the range 0530 - 058F

    In decimal form: 1328 - 1423

    Therefore, in a loop, it is enough to go through all these values ​​and display them, for example:

    var s = ''; for (let i = 1328; i <= 1423; i++) s += String.fromCharCode(i) + ' '; console.log(s);