I have a localStorage holding a string that looks like the follows:
"ABC&nbps;&nbps;&nbps;&nbps;ABC Description"
I get this string from the localStorage and I need to set the value of this string into an Option of a drop-down control, replacing the no-break space entity with empty spaces (in order to align with other options).
In the code behind of ASP.NET I would use HttpUtility.HtmlDecode. But how do you decode this string in the javascript?