Giter VIP home page Giter VIP logo

ollie-utils's Introduction

ollie-utils

countIf: returns a count of the number of items present in an array that match the object specified by a given function.

countIf(FUNCTION TO FILTER ITEMS OF A SPECIFIC TYPE, ARRAY)

The below example counts all the number objects in a mixed array and returns that count. e.g. countIf(function(thing) { return Number.isInteger(thing) }, [1, 'hello', 2, 3, 'goodbye'])

filter: returns an array of filtered objects.

filter(FUNCTION TO FILTER ITEMS OF A SPECIFIC TYPE, ARRAY)

The below example passes each element in an array through a given filter and returns that filtered array. The filtered array will only contain strings with commas. e.g. filter(function(str) { if(str.includes(',')) { return true; } else return false; }, ['hi', 'hi, me' 'hi, you' 'bye'])

map: transforms an array using a given function and returns the transformed array.

map(FUNCTION TO PERFORM ON ITEMS, ARRAY)

The below example changes each element in an array via a given function and returns that transformed array. The function splits each array at the comma into two arrays. e.g. map(function(str) { return str.split(","); }, ['hi,world', 'hi, me' 'hi, you' 'bye, you'])

ollie-utils's People

Contributors

oliver-jk-redding avatar

Watchers

James Cloos avatar

Forkers

andrew

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.