So erstellen Sie eine Variable in JavaScript
// you an pass in strings or a number
var exampleVariable = 'Example string' // this is a normal string
var anotherExample = 839;
Calm Copperhead