You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I remove the below commented lines I get an error; return not in function. And, if I remove return before JSON.stringify it works.
var spanishFrenchEnglishWords = [ ["cero","rien","zero"], ["uno","un","one"], ["dos","deux","two"] ];
// collect all the words for each number, in every language, in a single, flat list
var allWords = [0,1,2].
concatMap(function(index) {
return spanishFrenchEnglishWords[index];
});
return JSON.stringify(allWords) === '["cero","rien","zero","uno","un","one","dos","deux","two"]';
`
The text was updated successfully, but these errors were encountered:
When I remove the below commented lines I get an error; return not in function. And, if I remove return before JSON.stringify it works.
`
The text was updated successfully, but these errors were encountered: