How to sorting an array without using loops in Node.js ? Last Updated : 31 Aug, 2020 Comments Improve Suggest changes Like Article Like Report The setInterval() method repeats or re-schedules the given function at every given time-interval. It is somewhat like window.setInterval() Method of JavaScript API, however, a string of code can't be passed to get it executed. Syntax: setInterval(timerFunction, millisecondsTime); Parameter: It accepts two parameters which are mentioned above and described below: timerFunction <function>: It is the function to be executed.millisecondsTime <Time>: It indicates a period of time between each execution. The setTimeout() method is used to schedule code execution after waiting for a specified number of milliseconds. It is somewhat like window.setTimeout() Method of JavaScript API, however a string of code can't be passed to get it executed. Syntax: setTimeout(timerFunction, millisecondsTime); Parameter: It accepts two parameters which are mentioned above and described below: timerFunction <function>: It is the function to be executed. millisecondsTime <Time>: It indicates a period of time between each execution. Examples: Input: Array = [ 46, 55, 2, 100, 0, 500 ] Output: [0, 2, 46, 55, 100, 500] Input: Array = [8, 9, 2, 7, 18, 5, 25] Output: [ 2, 5, 7, 8, 9, 18, 25 ] Approach: The sorting requires visiting each element and then performing some operations, which requires for loop to visit those elements. Now here, we can use setInterval() method to visit all those elements, and perform those operations. The below code illustrates the above approach in JavaScript Language. File Name: Index.js javascript const arr = [46, 55, 2, 100, 0, 500]; const l = arr.length; var arr1 = []; var j = 0; var myVar1 = setInterval(myTimer1, 1); function myTimer1() { const min = Math.min.apply(null, arr); arr1.push(min); // arr[arr.indexOf(min)]=Math.max.apply(null, arr); arr.splice(arr.indexOf(min), 1); j++; if(j == l){ clearInterval(myVar1); console.log(arr1); } } Run Index.js file either on the online compiler or follow the following: node index.js Output: [0, 2, 46, 55, 100, 500] Comment More infoAdvertise with us Next Article How to sorting an array without using loops in Node.js ? amitkumarjee Follow Improve Article Tags : JavaScript Web Technologies Node.js Node.js-Misc Similar Reads How to search an element without using any loops in Node.js ? The setInterval() method repeats or re-schedules the given function at every given time-interval. It is somewhat like window.setInterval() Method of JavaScript API, however, a string of code canât be passed to get it executed. Syntax: setInterval(timerFunction, millisecondsTime); Parameter: It accep 3 min read How To Perform a Find Operation With Sorting In MongoDB Using Node.js? Performing a find operation with sorting in MongoDB using Node.js is a common task for developers working with databases. This guide will walk you through the process step-by-step, including setting up a MongoDB database, connecting to it using Node.js, performing a find operation, and sorting the r 3 min read How to Get the Longest String in an Array using JavaScript? Given an array, the task is to get the longest string from the array in JavaScript. Here are a few of the most used techniques discussed with the help of JavaScript. In this article, we will use JavaScript methods to find out the longest string in the array. All approaches are described below with e 5 min read How to Sort an Array of Objects with Null Properties in TypeScript ? Sorting an array of objects in TypeScript involves arranging objects based on specified properties. When dealing with null properties, ensure consistency by placing them either at the start or end of the sorted array to maintain predictability in sorting outcomes. Below are the approaches used to so 5 min read How to map array values without using map method in JavaScript ? Array elements can be mapped by using looping methods in JavaScript. The map() method creates a new array with the results of the output of a function called for each array element. This can also be implemented using a for loop in JavaScript.Approach 1: For this, we can create two arrays, in which o 3 min read How to Sort an Array of Object using a Value in TypeScript ? Sorting an array of objects using a value in TypeScript pertains to the process of arranging an array of objects in a specified order based on a particular property or value contained within each object. The below approaches can be used to sort an array of objects using a value in TypeScript: Table 3 min read How to Perform Aggregation Operations in MongoDB using Node.js? Aggregation operations in MongoDB allow you to process data records and return computed results. These operations group values from multiple documents, and perform a variety of operations on the grouped data to return a single result. MongoDB's aggregation framework is powerful and flexible, enablin 3 min read How To Sort An Array Without Mutating The Original Array In JavaScript? Sorting arrays is a common task in JavaScript, especially when you need to present data in a specific order. However, maintaining the original array is often necessary especially if the original data will be required later in your code. In this article we'll see how we can sort an array in JavaScrip 2 min read How to Sort an Array in TypeScript ? Array sorting is the process of arranging the elements within an array in a specified order, often either ascending or descending based on predetermined criteria. Below are the approaches used to sort an array in typescript: Table of Content Method 1: Using sort methodMethod 2: Spread OperatorMethod 3 min read How to Move a Key in an Array of Objects using JavaScript? The JavaScript array of objects is a type of array that contains JavaScript objects as its elements.You can move or add a key to these types of arrays using the below methods in JavaScript:Table of ContentUsing Object Destructuring and Map()Using forEach() methodUsing for...of LoopUsing reduce() met 5 min read Like