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.

16 lines
489 B

## Pop Art
### Instructions
You must modify the provided `popArtists` array using its methods.
> Do not to create a new one, just change it !
- Remove `'Pablo Picasso'` (first) and `'Louise Bourgeois'` (last) from the list
as they are not pop artists
### Notions
- [devdocs.io/javascript/global_objects/array/pop](https://devdocs.io/javascript/global_objects/array/pop)
- [devdocs.io/javascript/global_objects/array/shift](https://devdocs.io/javascript/global_objects/array/shift)