Open In App

JavaScript Error.prototype.fileName Property

Last Updated : 10 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The fileName is a non-standard property that contains the path of the file that raised this error. It is recommended to not use this property on production sites facing the web, as it may not work for every user.  If called from the Firefox Developer Tools, “debugger eval code” is returned. This property is one of the parameters, which is passed during creating an error object.

Syntax:

errorObj.fileName

Property value:  Path of the file containing code that raised this error.

Return Value: It returns a string, representing the path of the file containing code that raised this error.

Example 1:

Javascript




<script>
try {
    var err = new Error ("Could not parse file");
    if(err.fileName == undefined)
        err.fileName = "/Users/abhinavjain194/desktop/GFG/err.js"
    throw err;
}
catch(e) {
    console.log ("Error: " + e.message);
    console.log ("The Error occurred at " + e.fileName);
}
</script>


Output:

Error: Could not parse file
The Error occurred at /Users/abhinavjain194/desktop/GFG/err.js

Example 2:

Javascript




<script>
try {
    var err = new Error ("Unexpected token output");
    if(err.fileName == undefined)
        err.fileName = 
            "/Users/abhinavjain194/desktop/GFG/token_err.js"
    throw err;
}
catch(e) {
    console.log ("Error: " + e.message);
    console.log ("The Error occurred at " + e.fileName);
}
</script>


Output:

Error: Unexpected token output
The Error occurred at /Users/abhinavjain194/desktop/GFG/token_err.js

Supported Browsers:

  • Google Chrome
  • Firefox
  • Safari
  • Opera
  • Internet Explorer

We have a complete list of Javascript Errors, to check those please go through the JavaScript Error Object Complete Reference article.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads