The skipWhile() method is used to skip the collection elements while the given callback function returns true and returns the remaining collection elements.
Syntax:
collect(array).skipWhile(callback)
Parameters: The collect() method takes one argument that is converted into the collection and then skipWhile() method is applied on it. The skipWhile() method holds the callback as parameter.
Return Value: This method returns the remaining collection elements.
Below example illustrate the skipWhile() method in collect.js:
Example 1:
const collect = require( 'collect.js' );   const collection = collect([10, 22, 24, 28, 34, 36, 39]);   const skipWhile_val = collection     .skipWhile(element => element % 5 == 0);   console.log(skipWhile_val.all()); |
Output:
[ 22, 24, 28, 34, 36, 39 ]
Example 2:
const collect = require( 'collect.js' ); Â Â let obj = [ Â Â Â Â { Â Â Â Â Â Â Â Â name: 'Rahul' , Â Â Â Â Â Â Â Â marks: 88 Â Â Â Â }, Â Â Â Â { Â Â Â Â Â Â Â Â name: 'Aditya' , Â Â Â Â Â Â Â Â marks: 78 Â Â Â Â }, Â Â Â Â { Â Â Â Â Â Â Â Â name: 'Abhishek' , Â Â Â Â Â Â Â Â marks: 87 Â Â Â Â } ]; Â Â const collection = collect(obj); Â Â const skipWhile_val = collection.skipWhile( Â Â Â Â element => element.name.length == 5); Â Â console.log(skipWhile_val.all()); |
Output:
[ { name: 'Aditya', marks: 78 }, { name: 'Abhishek', marks: 87 } ]