Skip to content

Instantly share code, notes, and snippets.

@ElectricImpSampleCode
Last active November 26, 2019 15:01
Show Gist options
  • Save ElectricImpSampleCode/7c741cebb7e26f40a7ae to your computer and use it in GitHub Desktop.
Save ElectricImpSampleCode/7c741cebb7e26f40a7ae to your computer and use it in GitHub Desktop.
Squirrel array filter() example
local sourceArray = [10, 21, 30, 43];
// Find the array items that are multiples of ten
local resultArray = sourceArray.filter(function(index, value) {
return (value % 10 == 0);
});
server.log(resultArray.len());
server.log(sourceArray.len());
// Displays "2" and "4"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment