Returns the power of a number (can be in Bangla or English digits).
Base number (Bangla or English digits).
Exponent number (Bangla or English digits).
If true, returns the result in English digits. Default is false (returns Bangla digits).
The power of a raised to the power of b.
a
b
pow("২", "৩"); // returns "৮"pow(2, 3, true); // returns "8"pow("১০", "২", true); // returns "100"pow("৩", "৪"); // returns "৮১" Copy
pow("২", "৩"); // returns "৮"pow(2, 3, true); // returns "8"pow("১০", "২", true); // returns "100"pow("৩", "৪"); // returns "৮১"
If the input is invalid or not a number.
Returns the power of a number (can be in Bangla or English digits).