@@ -36,6 +36,12 @@ Use the <=> (equality) <operator> to find out whether two <numeric>
3636<expression|expressions> yield the same number or whether two
3737<string|strings> are equivalent.
3838
39+ >*Note:* A string in the form "xEy", where x is a number and y is an
40+ >integer will be treated as a number in <scientific notation>. This
41+ >means that such a string is evaluated as x * 10^y. For example:
42+
43+ put "5e2" = "500" -- returns true
44+
3945When comparing strings, the <=> <operator> compares the two
4046<value|values> <character> by <character>. If the <caseSensitive>
4147<property> is true, the comparison between two <string|strings> treats
@@ -75,7 +81,8 @@ Previously, comparing two arrays would have converted both arrays into
7581the empty string, and always returned true.
7682
7783References: property (glossary), operator (glossary),
78- case-sensitive (glossary), value (glossary), string (glossary),
84+ case-sensitive (glossary), scientific notation (glossary),
85+ value (glossary), string (glossary),
7986expression (glossary), character (keyword), numeric (keyword),
8087<> (operator), contains (operator), caseSensitive (property)
8188
0 commit comments