views:

44

answers:

1

in the json.js file i am getting an error on 199th line

199: JSON = JSON || {}; error is, JSON is not defined

Why is this happining?

A: 

In fact, reading the value of an undefined variable throws a ReferenceError (see GetValue(V) in ECMAScript). So you should use typeof before accessing it:

JSON = typeof JSON !== "undefined" ? JSON : {};
Gumbo
What’s the reason for the down vote?
Gumbo