/**
* @return time in minutes to cook egg
* @var c {num} circumference of egg
* @var bp {num} boiling point of water at current altitude
* @var i {num} initial temperature of egg
* @var f {num} final temperature of egg
*/
function egg_time(c, i, f, bp) {
return 0.15*Math.pow(c/Math.PI,2)*Math.log(2*(bp-i)/(bp-f))
}
/**
* @return temperature in farenheit
* @var c {num} temperature in celsius
*/
function celcius2Farenheit(c) {
return c*1.8+32;
}
function getLocation(fn) {
if(navigator.geolocation&&navigator.geolocation.getCurrentPosition) {
navigator.geolocation.getCurrentPosition(fn);
} else {
alert("fail");
}
}
/**
* @return the altitude of user from location API
*/
function getUserAltitude() {
}
/**
* @return the boiling point of water in degrees Celcius.
*/
function waterBoilingPoint(altitude) {
}
getLocation(function(){console.log(arguments)});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.