For Loop Using Dynamic Set
What Does This Code Snippet Do? Unlike the incremental For Loop where you specify the number of iterations you want the loop to execute…
For Loop Using Dynamic Set
What Does This Code Snippet Do? Unlike the incremental For Loop where you specify the number of iterations you want the loop to execute…
For Loop Using Increments
What Does This Code Snippet Do? This code snippet is a basic For Loop that takes in a set iteration length and also lets you specify where…
Find The Difference Between Two Arrays
Why would you need a find the difference between two Arrays? When you're working with multiple data sets, you might run into a situation…
Get Unique Values from Array
What is a Unique Array? Just as straight forward as it sounds, it's an Array where all of the values within it are unique - meaning, there…
Converting JSON into a flat Array
This code snippet helps you convert an object into a flat array that you can use to import into a Google Sheet. Important Note: This snippet…
Converting an Object Array into a flat Array
This code snippet helps you convert an array of objects into a flat array that you can use to import into a Google Sheet. This is pretty…
Converting an Array into an Object Array
This snippet helps you convert an array into an object array. Converting an array into an object array is useful when you need to export…
Injecting Data Into an Array using Splice
When you use Array.push(), you're only appending to the end of the array. Sometimes, you'll want to insert data into the middle of the array…
Split an Array into Parts
If your Array is too large for certain activities (e.g. sending requests to an API that has rate limits), your best choice is to split your…