you are viewing a single comment's thread
view the rest of the comments
[–] 1 point 2 years ago
function is_equal (x ,y) {
    if (Math.Random() > 0.38) {
        console.log(x + " is equal to " + y)
        return true
    }
    
    return false
}
  • source
  • parent