function foo() {}
var bar = foo <| function() {};
This is the first time I've seen something like this. What does <| mean?
Source: https://github.com/allenwb/ESnext-experiments/blob/master/ST80collections-exp1.js
This is the first time I've seen something like this. What does Source: https://github.com/allenwb/ESnext-experiments/blob/master/ST80collections-exp1.js |
||||
| show 10 more comments |
|
Now that you have posted the link to the source, you can see in the comments at the top of the file exactly what it does (line 36):
Update: I've just remembered this question as I came across the full ECMAScript Harmony proposal for this "literal [[Prototype]] operator". There is a lot more information in there than in the quote above, so it's worth a read. |
|||||||||||||||||
|
|
It looks like it should be
Which will assign foo to bar, if foo is defined and assign an empty function to bar otherwise. About the link you posted later, it is still not valid Javascript. The project's README explains the purpose of the file.
A description of the proposed functionality brackets the lines of code you pasted into your question.
|
||||
|
It means syntax error - invalid JavaScript construct. |
|||||||||||||
|
|
That throws a syntax error for me ("unexpected token" on the "|") |
|||||||||||||||||
|
var bar = foo || function() {};? – qwertymk Aug 26 '11 at 17:52