Create Array of Integers Between Two Numbers Inclusive in JavaScript/jQuery Last Updated : 26 Jun, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report There are multiple approaches for creating an array of all integers between two numbers, inclusive, in JavaScript/jQuery. Here are some of the common methods: Using loop Using Array.from() methodUsing jQuery Method 1: Using LoopsThe for loop or while loop iterates through all the integers between the two given numbers and pushes them into an array. Syntax: for (statement 1 ; statement 2 ; statement 3){ code here... }Example: In this example, we will see the use of for loop and push(). JavaScript function createArray(start, end) { let result = []; for (let i = start; i <= end; i++) { result.push(i); } return result; } let result = createArray(1, 5); // Output: [1, 2, 3, 4, 5] console.log(result); Output[ 1, 2, 3, 4, 5 ]Method 2: Using Array.from() methodUse Array.from() method to create an array of all integers between two numbers, inclusive. Syntax: function createArray(start, end) { return Array.from({length: end - start + 1}, (_, index) => start + index); }Example: In this example, we will see the use of Array.from() method. JavaScript function createArray(start, end) { return Array.from({ length: end - start + 1 }, (_, index) => start + index); } let result = createArray(1, 5); // Output: [1, 2, 3, 4, 5] console.log(result); Output[ 1, 2, 3, 4, 5 ]Method 3: jQuery approach using for loopThe program starts by defining the start and end of the numeric range as start and end respectively, which in this case are set to 3 and 9. By using a map we iterate between the number and get the value. HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content= "width=device-width, initial-scale=1.0"> <script src= "http://code.jquery.com/jquery-3.1.0.min.js" integrity= "sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"> </script> </head> <body> <script> // Start and end let start = 3; let end = 9; // Create an array of all integers // between start and end using jQuery let range = $.map(new Array(end - start + 1), function (val, index) { return index + start; }); document.write("[" + range.join(", ") + "]"); </script> </body> </html> Output: Create an array of all integers between two numbers, inclusive, in JavaScript/jQuery Comment More infoAdvertise with us Next Article Create Array of Integers Between Two Numbers Inclusive in JavaScript/jQuery L laxmigangarajula03 Follow Improve Article Tags : JQuery javascript-array JavaScript-DSA JavaScript-Questions jQuery-Questions +1 More Similar Reads Non-linear Components In electrical circuits, Non-linear Components are electronic devices that need an external power source to operate actively. Non-Linear Components are those that are changed with respect to the voltage and current. Elements that do not follow ohm's law are called Non-linear Components. Non-linear Co 11 min read Spring Boot Tutorial Spring Boot is a Java framework that makes it easier to create and run Java applications. It simplifies the configuration and setup process, allowing developers to focus more on writing code for their applications. This Spring Boot Tutorial is a comprehensive guide that covers both basic and advance 10 min read JavaScript Interview Questions and Answers JavaScript is the most used programming language for developing websites, web servers, mobile applications, and many other platforms. In Both Front-end and Back-end Interviews, JavaScript was asked, and its difficulty depends upon the on your profile and company. Here, we compiled 70+ JS Interview q 15+ min read Class Diagram | Unified Modeling Language (UML) A UML class diagram is a visual tool that represents the structure of a system by showing its classes, attributes, methods, and the relationships between them. It helps everyone involved in a projectâlike developers and designersâunderstand how the system is organized and how its components interact 12 min read Backpropagation in Neural Network Back Propagation is also known as "Backward Propagation of Errors" is a method used to train neural network . Its goal is to reduce the difference between the modelâs predicted output and the actual output by adjusting the weights and biases in the network.It works iteratively to adjust weights and 9 min read 3-Phase Inverter An inverter is a fundamental electrical device designed primarily for the conversion of direct current into alternating current . This versatile device , also known as a variable frequency drive , plays a vital role in a wide range of applications , including variable frequency drives and high power 13 min read Polymorphism in Java Polymorphism in Java is one of the core concepts in object-oriented programming (OOP) that allows objects to behave differently based on their specific class type. The word polymorphism means having many forms, and it comes from the Greek words poly (many) and morph (forms), this means one entity ca 7 min read What is Vacuum Circuit Breaker? A vacuum circuit breaker is a type of breaker that utilizes a vacuum as the medium to extinguish electrical arcs. Within this circuit breaker, there is a vacuum interrupter that houses the stationary and mobile contacts in a permanently sealed enclosure. When the contacts are separated in a high vac 13 min read CTE in SQL In SQL, a Common Table Expression (CTE) is an essential tool for simplifying complex queries and making them more readable. By defining temporary result sets that can be referenced multiple times, a CTE in SQL allows developers to break down complicated logic into manageable parts. CTEs help with hi 6 min read Python Variables In Python, variables are used to store data that can be referenced and manipulated during program execution. A variable is essentially a name that is assigned to a value. Unlike many other programming languages, Python variables do not require explicit declaration of type. The type of the variable i 6 min read Like