Underscore.JS - unescape method



Syntax

_.unescape(string)

unescape method replaces Html special characters replacement counterparts with actual characters. See the below example −

Example

var _ = require('underscore');

// Example 1
var result1 = _.unescape('Joe, Rob & Larry');
// Example 2
var result2 = _.unescape('3 > 2');

console.log(result1);
console.log(result2);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

Joe, Rob & Larry
3 > 2
underscorejs_utilities.htm
Advertisements