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
I like to look to Javascript to check on these kind of issues:
a = 1
b = 1.1
console.log(a == b) // false
a = "1"
b = "1.1"
console.log(a == b) // false
a = 1
b = 1.1
console.log(a == b) // false
a = 1
b = "1.1"
console.log(a == b) // false
a = "1"
b = 1.1
console.log(a == b) //false
this is ok in anko,but it should be not ok
The text was updated successfully, but these errors were encountered: