public/subjects/cultural-shift/README.md

19 lines
665 B
Markdown
Raw Permalink Normal View History

## Cultural Shift
![yayoi](https://user-images.githubusercontent.com/231748/112496181-6f6fef80-8d7c-11eb-8206-3da56f696af0.jpg)
Oh noes, Japanese artists have been left out, let's fix this !
### Instructions
You must modify the provided `popArtists` array using a combination of the
2021-03-31 17:25:24 +00:00
`push` and `unshift` array methods.
- Add `'Yayoi Kusama'` at the begining of the array
- Add `'Takashi Murakami'` at the end of the array
### Notions
2021-03-31 17:25:24 +00:00
- [devdocs.io/javascript/global_objects/array/unshift](https://devdocs.io/javascript/global_objects/array/unshift)
- [devdocs.io/javascript/global_objects/array/push](https://devdocs.io/javascript/global_objects/array/push)