There is a library called kotlin.math which contains a method pow:
import kotlin.math.pow
val factor = pow(10.0, 2)
print(factor)
and result:
100.0
However Intellij is not registering that I have imported the pow function, is there a special pow method for KotlinJS?