Answers for "javascript recursion over array"

1

javascript recursion over array

function recurse(arr=[])
{
  	// base case, to break the recursion when the array is empty
    if (arr.length === 0) {
    	return;
    }
  	
  	// destructure the array
	const [x, ...y] = arr;
  
  	// Do something to x
  	
  	return recurse(y);
}
Posted by: Guest on February-08-2020

Code answers related to "javascript recursion over array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language