Skip to content

Instantly share code, notes, and snippets.

View hahn-kev's full-sized avatar
🏗️
Building something awesome

Kevin Hahn hahn-kev

🏗️
Building something awesome
  • California
View GitHub Profile
@hahn-kev
hahn-kev / save-file-local.js
Created September 13, 2020 21:38 — forked from liabru/save-file-local.js
Save a text file locally with a filename, by triggering a download in JavaScript
/*
* Save a text file locally with a filename by triggering a download
*/
var text = "hello world",
blob = new Blob([text], { type: 'text/plain' }),
anchor = document.createElement('a');
anchor.download = "hello.txt";
anchor.href = (window.webkitURL || window.URL).createObjectURL(blob);
@hahn-kev
hahn-kev / save-file-local.js
Created September 13, 2020 21:38 — forked from liabru/save-file-local.js
Save a text file locally with a filename, by triggering a download in JavaScript
/*
* Save a text file locally with a filename by triggering a download
*/
var text = "hello world",
blob = new Blob([text], { type: 'text/plain' }),
anchor = document.createElement('a');
anchor.download = "hello.txt";
anchor.href = (window.webkitURL || window.URL).createObjectURL(blob);
@hahn-kev
hahn-kev / FizzBuzz.js
Created May 21, 2018 07:42 — forked from jaysonrowe/FizzBuzz.js
FizzBuzz JavaScript solution
for (let i=1; i <= 100; i++)
{
if (i % 15 == 0) {
console.log("FizzBuzz");
}
else if (i % 3 == 0) {
console.log("Fizz");
}
else if (i % 5 == 0) {
console.log("Buzz");