DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Random — Example 172

Quick explanation + ready code for: Random.

Rust Random Back to examples
Back to language
Syntax: Random in Rust. ID: #172

Code

const x = Math.floor(Math.random()*100);
console.log("rand=", x);

Notes

You can copy this snippet and adapt it. For advanced, add real-world inputs, edge cases, and tests.