Narayanasami N
Narayanasami N

Reputation: 125

Meaning of this jquery library?

In jquery-3.1.0.min.js there's a line that has a statement //,Fb={}, and followed by a lot of more statements Doesn't // make everything else a comment? then why are the statements present after it?

Upvotes: 1

Views: 62

Answers (1)

Zakaria Acharki
Zakaria Acharki

Reputation: 67505

As mentioned in comments above //,Fb={}, is not a commented code, but // here is a part of regular expresion :

Eb=/^\/\//,Fb={},...
___^_____^

Hope this helps.

Upvotes: 1

Related Questions