In PHP, you can do...
range(1, 3); // Array(1, 2, 3)
range("A", "C"); // Array("A", "B", "C")
That is, there is a function that allows you to get a scope of numbers or characters bypassing the upper and lower limits.
Is there anything built-in to JavaScript natively for this? If not, how would I implement it?