Skip to content

Instantly share code, notes, and snippets.

View Jhegs's full-sized avatar
🛰️
...far far away.

Josh Jhegs

🛰️
...far far away.
  • Hades
  • Third planet, Solar system
View GitHub Profile
@Jhegs
Jhegs / PrivacyPolicyforJSandbox.md
Created March 25, 2024 03:41
Privacy Policy for JSandbox

Privacy Policy

Last updated: March 25, 2024

This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.

We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the Privacy Policy Generator.

Interpretation and Definitions

Interpretation

The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.

@Jhegs
Jhegs / Example.js
Created January 22, 2018 14:22
CallBack Hell
"use strict";
function asyncSqrt(value, callback) {
console.log('START execution with value =', value);
setTimeout(function () {
callback(value, value * value);
}, 0 | Math.random() * 100);
}
asyncSqrt(0, function (value, result) {