9 posts tagged with “array”

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…

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…

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…