Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
const PI = 3.14
console.log(PI); //3.14
PI = 3 // re-assign
console.log(PI); //3.14
const PI = 4 //re-initialize
console.log(PI); //3.14
var PI = 5 //re-declare
console.log(PI); //3.14
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers