Skip to content

Instantly share code, notes, and snippets.

@EmmaG2
Last active July 16, 2022 17:51
Show Gist options
  • Save EmmaG2/22a738887aec76511ec50b419887eae2 to your computer and use it in GitHub Desktop.
Save EmmaG2/22a738887aec76511ec50b419887eae2 to your computer and use it in GitHub Desktop.
'use strict';
const testArray = [1, 'hello', 2, 'world']
const onlyStrings = []
testArray
.filter(n => typeof n === 'string')
.map(n => onlyStrings.push(n))
console.log(onlyStrings)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment