โ Back to Loops
Question 34
filter: Keep Long Words
filter: Keep Long Words
Use filter to keep words that have 5 or more characters, then print them as comma-separated values.
Array:
['sun', 'apple', 'tree', 'grapes']
Expected output:
apple,grapes
Steps:
1. Use filter on the words array
2. Keep words where word.length >= 5
3. Print the filtered words with join(',')Expected Output:
apple,grapes
Topics:
LoopsArraysfilter
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.