parseInt

external fun parseInt(s: String): Int

Deprecated (with error)

Use toInt() instead.

Replace with

s.toInt()

external fun parseInt(s: String, radix: Int = definedExternally): Int

Deprecated (with error)

Use toInt(radix) instead.

Replace with

s.toInt(radix)