Posts by Toni Albuquerque • 305 points
2 posts
-
18
votes10
answers34548
viewsA: What is the difference between the == and === Javascript operators?
Javascript has both comparisons strict and abstract. A comparison strict (===) is only true if the operands are of the same type and have the same value. The most commonly used comparison is…
-
0
votes5
answers20362
viewsA: Is there an algorithm to check the validity of a ID number in Brazil using check digits?
RG’s are state-issued records(UF). Each state has different rules and quantities of numbers in the registry. Not a reliable source to ensure the uniqueness of a data. Therefore, there are several…