Reputation: 525
I'm using stacktrace.js, and it returns several lines that include the URL followed by two numbers separated by colons. For example:
http://url.com/myscript.js:80:34
What does the 80 and the 34, in this example, correlate to? I can't find documentation on this script's use of the numbers.
Upvotes: 1
Views: 123
Reputation: 9548
line 80 character 34
The numbers are unrelated to any numbers in your script.
Upvotes: 2