I have the following JavaScript code :
function dox( )
{
d= [1, 2, 3] + [1,2,3] ;
d.map(function(value) {return parseInt(value)});
document.writeln(d );
}
and I got the following error :
Uncaught TypeError: undefined is not a function.
I spent a lot of time to solve this bug but I could not ,
Could somebody explain me what is the problem !?
Thanks