Reputation: 99960
TypeError: Cannot call method 'get' of undefined
at C:\Users\denman\workspace-nodejs\ExpressNodeUpAndRunning\app.js:112:25
I am trying to find out the line number of the error...
is 112 the line number of the app.js file where the error occurred? Then what is 25?
Upvotes: 0
Views: 37
Reputation: 106698
The 3 components are sourceFilePath
:lineNumber
:columnNumber
.
So the error occurs on line 112, at column 25.
Upvotes: 2