public/subjects/give-me-the-code
Clement Denis d3a8b56646 discovery-js: add more exercises 2021-05-05 23:27:11 +01:00
..
README.md discovery-js: add more exercises 2021-05-05 23:27:11 +01:00

README.md

Give me the code

Instructions

Create a jsFileOnly function that takes an array of filenames (strings) and only keeps those that are ending with .js

Example:

const result = jsFileOnly([
  'essay.docx',
  'index.html',
  'info.txt',
  'lib.js',
  'README.md',
  'script.js',
])

console.log(result) // ['lib.js', 'script.js']