+ 2
What is this symbol for ? "quot; Don't even know where to look for. Please help
$- what's that ?
7 Answers
+ 16
PHP variable,
End of line RegExp,
JQuery library,
AngularJs
+ 10
Nothing! ^_^
+ 6
oh, somethin strange will happen
+ 5
'#x27; is a valid vaiable identifier name in JS, mostly used as JQuery base function library, but you can use it ( if bit using JQuery ) as any custom variable. So, you can do:
var $ = [ 1, 2, 3, 4, 5 ];
var x = 2;
alert( x-$[x] );
And you'll get an alert box with the output of '-1', as result of '2-3'...
+ 3
In JavaScript, it denotes the usage of JQuery.
EDIT: Can somebody tell me why this answer deserves -1 likes? Having negative likes is a very saddening thing.
0
if there is ex. x-$[x] then what happens ?
0
visph thanks a lot for explanation :3