Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7635935
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:33:04+00:00 2026-05-31T07:33:04+00:00

Given this Javascript: String.method(‘deentityify’, function () { // The entity table. It maps entity

  • 0

Given this Javascript:

String.method('deentityify', function () {
    // The entity table.  It maps entity names to
    // characters.
    var entity = {
        quot: '"',
        lt: '<',
        gt: '>'
    };

    // Return the deentityify method
    return function () {

        return this.replace(/&([^&;]+);/g,
            function (a, b) {
                var r = entity[b];
                return typeof r === 'string' ? r : a;
            }
        );
    };
}());

document.writeln('&lt;&quot;&gt;'.deentityify());

What goes into the last function as a and b, and why?

I get that we’re splitting up the string I’m passing in into 3 groups, but I don’t understand why &lt; is going into a and why just lt is going into b.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T07:33:05+00:00Added an answer on May 31, 2026 at 7:33 am

    The first argument contains the whole match, all consecutive arguments are the matched groups. The last two arguments are the offset and full input string.

    var input = '&lt;&quot;&gt;'
    input.replace( /&([^&;]+);/g, function (a, b)
    

    The pattern matches all occurrences of & + every non-& + ;.

    a      b
    &lt;   lt 
    &quot; quot
    &gt;   gt
    

    See also: MDN: String.replace with a function

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I pasted the code given in this link to a file called md5.js. http://www.webtoolkit.info/javascript-md5.html
The following code in javascript gives me the error this.callback is not a function
So i am trying to call this function in my javascript but it gives
I'm trying to call a function in JavaScript via Java. This works fine when
I need to write a split function in JavaScript that splits a string into
is there any method in c# thats equivalent to the javascript join() .. var
If I convert a Bytearray in Javascript to a string using the following method:
I have to execute a given String as JavaScript code, e.g. eval('Foo.setMessage(Hello!)') , from
My HTML file has a javascript function xxx_return(), which will return a string value.
Given this HTML: <ul id=topnav> <li id=topnav_galleries><a href=#>Galleries</a></li> <li id=topnav_information><a href=#>Information</a></li> </ul> And this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.