mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
353 B
22 lines
353 B
4 years ago
|
## 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:**
|
||
|
|
||
|
```js
|
||
|
const result = jsFileOnly([
|
||
|
'essay.docx',
|
||
|
'index.html',
|
||
|
'info.txt',
|
||
|
'lib.js',
|
||
|
'README.md',
|
||
|
'script.js',
|
||
|
])
|
||
|
|
||
|
console.log(result) // ['lib.js', 'script.js']
|
||
|
```
|