1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:37:46 +00:00

LibJS: Add Math.pow()

This commit is contained in:
Linus Groh 2020-04-23 12:36:08 +01:00 committed by Andreas Kling
parent 687096cadd
commit 97366f4dd4
3 changed files with 36 additions and 0 deletions

View file

@ -50,6 +50,7 @@ private:
static Value sin(Interpreter&);
static Value cos(Interpreter&);
static Value tan(Interpreter&);
static Value pow(Interpreter&);
};
}