You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example: const startingYear: int32 = startingDateString.split('/').pop();
This one gives error
Solution
We should have something like const startingYear: int32 = startingDateString.split('/').pop().toInt();
or const startingYear: int32 = (int32) startingDateString.split('/').pop();
Expected behavior
A clear and concise description of what you expected to happen.
The text was updated successfully, but these errors were encountered:
Describe the bug
Casting is not available in BL.
Example:
const startingYear: int32 = startingDateString.split('/').pop();
This one gives error
Solution
We should have something like
const startingYear: int32 = startingDateString.split('/').pop().toInt();
or
const startingYear: int32 = (int32) startingDateString.split('/').pop();
Expected behavior
A clear and concise description of what you expected to happen.
The text was updated successfully, but these errors were encountered: