এম এন নাহিদ
Latest posts by এম এন নাহিদ (see all)
- Walton Primo G7+ এর হ্যান্ডস-অন রিভিউঃ সাশ্রয়ী বাজেটে দারুণ ফোন - 05/07/2017
- হ্যান্ডস-অন রিভিউঃ Walton Primo G7 - 18/05/2017
- ওয়ালটনের নতুন ট্যাব Walpad C এর হ্যান্ডস-অন রিভিউ - 05/05/2016
Whats the need of using a different Calculator when you use Opera Mini ?
From now on you may turn your Opera Mini into a Calculator.
¤ Type the following codes in the address bar
of Opera Mini
¤ Press OK
¤ You will get the result.
*** Codes :
>> Addition :
javascript:alert(a+b)
* Example:
javascript:alert(2+3)
>> Substraction :
javascript:alert(a-b)
* Example:
javascript:alert(9-7)
>> Multiplication :
javascript:alert(a*b)
* Example:
javascript:alert(3*3)
>> Division :
javascript:alert(a/b)
* Example:
javascript:alert(9/3)
>> x power y :
javascript:alert(Math.pow(x,y))
* Example:
javascript:alert(Math.pow(3,3))
>> Square root of a :
javascript:alert(Math.sqrt(a))
* Example:
javascript:alert(Math.sqrt(9))
>> Modules i.e. the remainder of the integer division of a by b :
javascript:alert(a%b)
* Example:
javascript:alert(6%4)
>> Minimum/Maximum :
javascript:alert(Math.min(a,b,c,d))
javascript:alert(Math.max(a,b,c,d))
* Example:
javascript:alert(Math.min(2,4,8,3))
javascript:alert(Math.max(2,4,8,3))