Lodash _.takeSkipping() Method
Lodash _.takeSkipping() method takes an array and a skip value (say n) and creates an array containing every nth element of the original array. For an index >= 0 first element of the new array is always the same as the first element of the original array. Syntax:_.takeSkipping(array, skip_value)P