Answer (Choose 1 answer)
What happens when the following render() method executes?
A. Displays nothing
B. Error. Cannot use direct JavaScript code in JSX
C. Error. Should be replaced with a for..loop for correct output
D. Displays the list of languages in the array
render() {
let langs = [ "Ruby", "ES6", "Scal
return (<div>{langs.map(it => <p>{it}</p</div>)
}
E12