We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The interpreter rounds it down instead of throwing an error.
Example 1:
"abcd"[3/4]
Result:
"a"
Example 2:
[1, 2, 3][2.5]
3
The specification (i.e. array-index rule) suggests that was unintended.
Activity