Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Syntax-highlighted version of https://tweakers.net/nieuws/225032/onderzoekers-kunnen-exacte-locaties-van-gebruikers-van-dating-apps-achterhalen.html?showReaction=20173984#r_20173984
- const mijn_geheime_locatie = [ /* is geheim! */ ];
- function afstand(jouw_gesimuleerde_locatie) {
- // geeft de afstand in graden (kan naar km worden omgezet met iets als Haversine-formule)
- console.log(Math.sqrt(
- Math.pow(Math.round(mijn_geheime_locatie[0], 2) - Math.round(jouw_gesimuleerde_locatie[0], 2), 2) +
- Math.pow(Math.round(mijn_geheime_locatie[1], 2) - Math.round(jouw_gesimuleerde_locatie[1], 2), 2)
- ));
- }
- afstand([0, 0]); // 51.35172830587107
- afstand([50.7549999, 6.0200001]); // 0
- afstand([50.7500001, 6.0249999]); // 0
Advertisement
Add Comment
Please, Sign In to add comment