This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var output; | |
var maxNum = 100; | |
const run = () => { | |
for (var i = 1; i <= maxNum; i++) { | |
output = ""; | |
if (divide(i, 3) == 0) { | |
appendOutput("Fizz"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#title : Simple Auto-Setup Script for NodeJS and Laravel | |
#description : Installs all dependencies for NodeJS and Laravel web apps | |
#author : seanquijote | |
#date_created : 20200428 | |
#date_lastupdated : 20200521 | |
#version : 0.0.4 | |
#============================================================================== | |
read -e -p "Enter Username: " UNAME |