str=' have a nice
day';
document.write(str);
View in browser , result is empty.
I want convert this statement code to :
str=' have a nice day';
document.write(str);
View in browser , result is "have a nice day".
I think error with string in JS
Please help me
Thks




