I need a simple javascript function which takes 3 inputs
1- Start ASCII value
2- End ASCII value
3- String length
The function will loop from starting value to ending value until length has been made.
For example,
start - 65
end - 67
length- 2
I want all the combination (length 2) of ASCII of [ 65, 66, 67 ] that is ["A", "B", "C"]
I would like the output as
AA
AB
AC
BB
BA
BC
CA
CB
CC