scader
scader

Reputation: 525

What do the numbers in stacktrace.js correlate to?

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

Answers (1)

Jack
Jack

Reputation: 9548

line 80 character 34

The numbers are unrelated to any numbers in your script.

Upvotes: 2

Related Questions