Last updated
⚠️ Not a number method.
.prepend()works only on strings. See strings/.prepend.md.
Casts the current number to a string, prepends val, and returns the combined string.
val - value to place in front (converted to string).
log 99.prepend("ID-") // "ID-99"Last updated