Skip to content

Instantly share code, notes, and snippets.

@jfraboni
jfraboni / jsbin.nigawi.js
Last active January 12, 2017 22:09 — forked from anonymous/index.html
VariablesVariables// source https://jsbin.com/nigawi
/*
* VARIABLES:
*
* 0. To hold things in memory during the life-cycle of a program, we can use variables. Variables
* are named identifiers that can point to values of a particular type, like a Number, String,
* Boolean, Array, Object or another data-type. Variables are called so because once created, we
* can CHANGE the value (and type of value) to which they point.
*
* 1. To create a variable we use the keyword, var, followed by a name (id or alias) for our
* variable.
@jfraboni
jfraboni / jsbin.jihure.js
Last active August 26, 2016 01:45 — forked from anonymous/index.html
variablesvariables// source https://jsbin.com/jihure
/*
* VARIABLES:
*
* 0. To hold things in memory during the life-cycle of a program, we can use variables. Variables
* are named identifiers that can point to values of a particular type, like a Number, String,
* Boolean, Array, Object or another data-type. Variables are called so because once created, we
* can CHANGE the value (and type of value) to which they point.
*
* 1. To create a variable we use the keyword, var, followed by a name (id or alias) for our
* variable.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
// variables
@jfraboni
jfraboni / jsbin.jihure.js
Last active October 12, 2016 17:58 — forked from anonymous/index.html
variablesvariables// source https://jsbin.com/jihure
/*
* VARIABLES:
*
* 0. To hold things in memory during the life-cycle of a program, we can use variables. Variables
* are named identifiers that can point to values of a particular type, like a Number, String,
* Boolean, Array, Object or another data-type. Variables are called so because once created, we
* can CHANGE the value (and type of value) to which they point.
*
* 1. To create a variable we use the keyword, var, followed by a name (id or alias) for our
* variable.
@jfraboni
jfraboni / jsbin.jihure.js
Last active August 29, 2015 14:27 — forked from anonymous/index.html
variablesvariables// source https://jsbin.com/jihure
/*
* VARIABLES:
*
* 0. To hold things in memory during the life-cycle of a program, we can use variables. Variables
* are named identifiers that can point to values of a particular type, like a Number, String,
* Boolean, Array, Object or another data-type. Variables are called so because once created, we
* can CHANGE the value (and type of value) to which they point.
*
* 1. To create a variable we use the keyword, var, followed by a name (id or alias) for our
* variable.
@jfraboni
jfraboni / index.html
Last active August 29, 2015 14:24 — forked from anonymous/index.html
<!DOCTYPE html>
<html>
<head>
<meta name="underbar: contains" content="underbar: contains">
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">