Final answer:
The statement is true; one equal sign assigns a value, while three equal signs are used for strict comparison in programming languages like JavaScript.
Step-by-step explanation:
The statement presented by the student is true. In many programming languages, a single equal sign (=) is indeed used for assigning a value to a variable. On the other hand, three equal signs (===) are commonly used in JavaScript to perform a strict comparison between two values, which checks both the value and the type of the variables. This is different than using two equal signs (==), which performs a loose comparison, converting the operands to the same type before making the comparison.