+ 5
I'm a new in javascript. Could You tell me please how to on the display a character "i" of the "Mississippi" on the edit code?
js https://code.sololearn.com/W5sxhUR0NLNE/?ref=app https://code.sololearn.com/Ws54zWups8Sh/?ref=app
2 Respuestas
+ 5
EGO Avoid using built-in names as variable names. For example String is the constructor function of all string objects.
+ 3
You misspelled 'length':
var Lenght= String.lenght;
Change to:
var Lenght= String.length;