Assign x

Category:Variables

Assign a value to a variable

Category: Variables

Assigns a value to a previously declared variable.

To process data in our apps we need to assign values to memory locations we have previously named using var to declare a variable. Programmers read the statement "area = length * width;" as "area gets length times width". The variable getting the value always goes on the left hand side of the assignment operator =. The right hand side of the assignment operator can be a number or a string, or the number or string returned by a function, or the numeric or string result of the evaluation of an expression.

Examples


AخA
 
1
// Declare, assign, and output the value of a variable.
2
var x;
3
x = 5;
4
console.log("x has the value " + x)

Example: Circumference and Area Calculate the circumference and area of a circle with radius 10.

6
 
1
// Calculate the circumference and area of a circle with radius 10.
2
var radius, circumference, area;
3
radius = 10;
4
circumference = 2 * Math.PI * radius;
5
area = Math.PI * radius * radius;
6
console.log("Circle radius 10 has circumference of " + circumference + " and area of " + area);

Example: Fibonacci Generate the first nine terms of the Fibonacci series.

14
 
1
// Generate the first 9 terms of the Fibonacci series.
2
var termA, termB, termC;
3
termA = 1;
4
termB = 1;
5
termC = termA + termB;
6
console.log(termA + " " + termB + " " + termC);
7
termA = termB + termC;
8
termB = termC + termA;
9
termC = termA + termB;
10
console.log(termA + " " + termB + " " + termC);
11
termA = termB + termC;
12
termB = termC + termA;
13
termC = termA + termB;
14
console.log(termA + " " + termB + " " + termC);

Example: Message Board Collect, count and display messages from friends.

12
 
1
// Collect, count and display messages from friends.
2
textLabel("myTextLabel", "Type a message and press press enter");
3
textInput("myTextInput", "");
4
var count;
5
count=1;
6
onEvent("myTextInput", "change", function(event) {
7
  var myText;
8
  myText = getText("myTextInput");
9
  write("Message #" + count + ": " + myText);
10
  setText("myTextInput", "");
11
  count = count + 1;
12
});

Syntax

1
 
1
x = ___;

Parameters

Name Type Required? Description
x variable name Yes The name you will use in the program to reference the variable. Must begin with a letter, contain no spaces, and may contain letters, digits, - and _.
___ any type Yes The right hand side of the assignment operator can be a number or a string, or the number or string returned by a function, or the numeric or string result of the evaluation of an expression.

Returns

No return value. Variable assigned value in memory.

Tips

  • The variable must be declared using var before it can be assigned its initial value.
  • You can use the same variable on both the right hand side of the assignment operator = and the left hand side. This is sometimes used for a counter count = count + 1;
  • = is the assignment operator. == is the boolean check for equivalency operator.

Found a bug in the documentation? Let us know at documentation@code.org

Syntax

1
 
1
x = __;

Returns

Does not return a value. Assigns 2 to someVal. Assumes that someVal has already been declared.

Found a bug in the documentation? Let us know at documentation@code.org