And for those with embedded JavaScript to write, in which you already
have too many quotes: =o)
print< wrote:
> David Gilden writes ..
>
> >Original from the class:
> >
> >print " checked>\n";
> >
> >
> >Is this bad style?
>
> yep .. avoid backwhacks at all costs - that's my opinion
>
>
> >
David Gilden writes ..
>Original from the class:
>
>print "\n";
>
>
>Is this bad style?
yep .. avoid backwhacks at all costs - that's my opinion
>print '',"\n";
>
>better?
yep .. much better
>print ''. "\n";
also good - but generally accepted as inferior to the second snippet
>I do believe
Original from the class:
print "\n";
Is this bad style?
print '',"\n";
better?
print ''. "\n";
I do believe that these 3 statements are all equivalent.
Thanks
Dave