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
#!/bin/bash | |
#export PATH=$PATH:/Users/macbook/mongodb/bin | |
export PATH=$PATH:/data/master/SDK/android-sdk/sdk/tools | |
export PATH=$PATH:/Applications/Genymotion\ Shell.app/Contents/MacOS/:/Applications/Genymotion.app/Contents/MacOS/ | |
export PYTHONPATH=$(brew --prefix)/lib/python2.7/site-packages:$PYTHONPATH | |
export JAVA_HOME=$(/usr/libexec/java_home) | |
export ANDROID_HOME=/usr/local/opt/android-sdk | |
alias redis=~/redis/src/redis-server |
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
'use strict'; | |
const numbertest = (digit) => { | |
let reversedDigit = ''; | |
for (let $i = `${digit}`.length; $i >= 0; $i--) { | |
reversedDigit += `${digit}`.charAt($i); | |
} | |
console.log(reversedDigit === digit); | |
}; |
NewerOlder