I had some problems with some javascript code with breaked lines. Is that possible? Must a javascript line of code be not breaked to work fine?
breaking code lines on javascript
What do you actually mean by "breaked lines"? Did you mean something like this:
dosomething("askdjsajd asdj adj skdj ldj asdjasdljadl jad",
1,3,
4,
5);
You get the idea...
dosomething("askdjsajd asdj adj skdj ldj asdjasdljadl jad",
1,3,
4,
5);
You get the idea...
I mean splitting long lines apart in the JavaScript code. With an Enter for example.
Because javascript doesn't require lines to end with ; it assumes a new line is a new line of code unlike a lot of other languages. To split code between lines, I think you have to end the line with a \ to make it ignore the newline.
