Difference between revisions of "Error Messages/40121"
(Created page with "== Example warning message == :The * operator doesn't apply to text values. == Description == This warning may be raised from within a large number of operations that don't...") |
m |
||
Line 5: | Line 5: | ||
== Description == | == Description == | ||
− | This warning may be raised from within | + | This warning may be raised from within various operations (especially arithmetic operators) that don't apply to text values. For example, the expression <code>15 * 'a'</code> does not make sense and will raise this warning. Ignoring the warning results is [[NaN]]. |
Latest revision as of 20:30, 7 July 2021
Example warning message
- The * operator doesn't apply to text values.
Description
This warning may be raised from within various operations (especially arithmetic operators) that don't apply to text values. For example, the expression 15 * 'a'
does not make sense and will raise this warning. Ignoring the warning results is NaN.
Comments
Enable comment auto-refresher