Open In App

JavaScript Program to Generate a Range of Numbers and Characters

Generating a range of numbers and characters means creating a sequential series of numerical values or characters, typically within specified start and end points, forming a continuous sequence or collection.

Approaches to Generate a Range of Numbers and Characters Using JavaScript

Using Array from() and charCodeAt() method

In this approach, Array.from() is a JavaScript method that creates an array from an iterable or array-like object. It’s often used to generate arrays of numbers, characters, or other elements based on specified conditions, making it versatile for data manipulation.



charCodeAt() returns the Unicode of the character whose index is provided to the method as the argument.

Syntax:

Array.from(object, mapFunction, thisValue)
str.charCodeAt(index)


Example: In this example we will generate the numbers and characters in the given range using array from and charCodeAt method.




const startNum = 1;
const endNum = 8;
const numbers = Array.from({ length: endNum - startNum + 1 },
    (_, index) => startNum + index);
  
const startChar = 'A';
const endChar = 'G';
const CharCode1 = startChar.charCodeAt(0);
const CharCode2 = endChar.charCodeAt(0);
const characters = Array.from(
    { length: CharCode2 - CharCode1 + 1 },
        (_, index) =>
            String.fromCharCode(CharCode1 + index)
);
  
console.log(numbers);
console.log(characters);

Output
[
  1, 2, 3, 4,
  5, 6, 7, 8
]
[
  'A', 'B', 'C',
  'D', 'E', 'F',
  'G'
]

Using For…in loop method

Using a for…in loop, we iterate through the indices of an array-like object, performing a specific action for each index. It’s often used to traverse object properties but can be adapted for other tasks like generating sequences.

Syntax:

for (let i in obj1) {
// Prints all the keys in
// obj1 on the console
console.log(i);
}

Example: In this example, we will use For..in loop to generate numbers in the given range.




function generateNumber(num1, num2) {
    const result = [];
  
    for (let i in [...Array(num2 - num1 + 1)]) {
        result.push(Number(i) + num1);
    }
  
    return result;
}
  
const result = generateNumber(1, 8);
console.log(result);

Output
[
  1, 2, 3, 4,
  5, 6, 7, 8
]

Using for loop method

In this apporach, we are using for loop to iterate through character codes between ‘A’ and ‘G’, converting each code to its corresponding character and appending it to the result array,

Syntax:

for (statement 1 ; statement 2 ; statement 3){
code here...
};

Example: In this example, we will use JavaScript For loop to generate the characters in the given range.




const startChar = 'A';
const endChar = 'G';
const result = [];
  
for (let charCode = startChar.charCodeAt(0);
    charCode <= endChar.charCodeAt(0);
    charCode++) {
    result.push(String.fromCharCode(charCode));
}
  
console.log(result);

Output
[
  'A', 'B', 'C',
  'D', 'E', 'F',
  'G'
]

Article Tags :