I think the problem is blank space between "First" and "project", because it is also underlined with red in debugger.
What correction must I perform to resolve this problem?
(i did try to solve it with: var actualproject2 = new String('String');, but no success)
JavaScript
Last Comment
Olaf Doschke
8/22/2022 - Mon
Bill Prew
If you are trying to assing "First project" to the string actualproject2 that you are creating, then:
function show_btn(){ var actualproject2 = new String('First project');}
Open in new window
»bp