jedu
jedu

Reputation: 1341

What does number after semicolon mean in Nodejs error message?

If there is a type error in Nodejs at line 300 of app.js for example. The error message in the console will show up as

TypeError: Cannot read property at postMovement (C:\Users\David\app.js:300:94)

300 is the line where there is the error message. What does the 94 at the end mean?

Upvotes: 0

Views: 53

Answers (1)

wattry
wattry

Reputation: 994

It represents the column i.e. line 300 column 94

Upvotes: 1

Related Questions