1.Given the following array, what is the value of test:
var school = [
['David', 'Yamil', 'Edgardo'],
['Mari', 'Jan', 'Luis', 'Nelson']
];
var test = school[1][2];
import cowsay from 'cowsay-browser' | |
export default () => ( | |
<pre>{ cowsay.say({ text: 'hi there!' }) }</pre> | |
) |