+ 2
How to remove this error, please help
Error in java script https://code.sololearn.com/Wzo2RtltCrh6/?ref=app
3 Antworten
+ 2
I see the problem: "pickRandom" is not a built-in function in JavaScript. You should implement it yourself.
+ 4
That function cann be for example:
function pickRandom(x){
return x[Math.floor(Math.random() * x.length)];
}
+ 1
Thank you very much, actually I learnt it from Google Grasshopper