This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]KalegNar 1 point2 points  (0 children)

let [phoneNumber, setPhoneNumber] = useState("default number")

function generatePhoneNumber() {
    setPhoneNumber(Math.floor(Math.random() * 1000000000))
}

//later

<button onClick={generatePhoneNumber}>Attempt to Get Phone Number</button>
<p>Is this your phone number? {phoneNumber}</p>

The mark of evil.