Skip to content

Instantly share code, notes, and snippets.

@gilles-leblanc
Created April 13, 2013 00:56
Show Gist options
  • Save gilles-leblanc/5376331 to your computer and use it in GitHub Desktop.
Save gilles-leblanc/5376331 to your computer and use it in GitHub Desktop.
Strings and numbers conversions
/** Strings and numbers conversions
* The first commented line is your dabblet’s title
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
<!-- content to be placed inside <body>…</body> -->
<div id="first-result"></div>
<div id="second-result"></div>
<div id="third-result"></div>
<div id="fourth-result"></div>
// alert('Hello world!');
var x = 10;
// string concat with + operator
document.getElementById("first-result").innerHTML = x + "10";
// integer addition
document.getElementById("second-result").innerHTML = x + 10;
// integer substraction
document.getElementById("third-result").innerHTML = 40 - x;
// with -, first string is converted to number
document.getElementById("fourth-result").innerHTML = "40" - x;
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"javascript"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment