Lodash - unescape method



Syntax

_.unescape([string=''])

The inverse of _.escape; this method converts the HTML entities &, <, >, ", and ' in string to their corresponding characters.

Arguments

  • [string=''] (string) − The string to unescape.

Output

  • (string) − Returns the unescaped string.

Example

var _ = require('lodash');
var result = _.unescape('Joe, Julie, &amp; Robert');

console.log(result);

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

Command

\>node tester.js

Output

Joe, Julie, & Robert
lodash_string.htm
Advertisements