Skip to content

Instantly share code, notes, and snippets.

@ymdx
Created February 1, 2018 11:36
Show Gist options
  • Save ymdx/8df64cd0f7602be57d1011c8bb9b62ad to your computer and use it in GitHub Desktop.
Save ymdx/8df64cd0f7602be57d1011c8bb9b62ad to your computer and use it in GitHub Desktop.
THE UNARY + OPERATOR
var nInitial = document.getElementById("initialField").value;
var nExtra = 15.5;
var nTotal = +nInitial + nExtra;
document.getElementById("totalField") = nTotal;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment