Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
// Addition
console.log(7 + 3)
// Subtraction
const count = 10
console.log(count - 9)
// Division
const averageScore = 100 / 7.0
console.log(averageScore)
// Multiplication
const donuts = 12
console.log(donuts * 4)
// Increment 
let i = 10
i++
console.log(i)
// Decrement
let j = 23
j--
console.log(j)
// Modulus (remainder)
console.log(10 % 3)
// Exponents
console.log(3**2)
// PEDMAS 
console.log(8 / 2 * (2 * 2))
Output

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

Dismiss x