Last active
July 16, 2022 17:51
-
-
Save EmmaG2/22a738887aec76511ec50b419887eae2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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