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.

19 lines
652 B

## Pop Art
### Instructions
You must modify the provided `popArtists` array using a combination of the
`pop`, `push`, `shift` and `unshift` array 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 artist
- Add `'Andy Warhol'` at the begining of the array
- Add `'Robert Indiana'` at the end of the array
### Notions
- [devdocs.io/javascript/global_objects/array/pop](https://devdocs.io/javascript/global_objects/array/pop)
- [devdocs.io/javascript/global_objects/array/unshift](https://devdocs.io/javascript/global_objects/array/unshift)