Last active
January 8, 2018 04:55
-
-
Save bengrunfeld/aa43a3b91458509172bb465ab74ca88c to your computer and use it in GitHub Desktop.
Quickly open browser tabs
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
const c1 = target => { | |
const pre = 'https://www.binance.com/tradeDetail.html?symbol=' | |
window.open(`${pre}${target}_BTC`, '_blank') | |
} | |
const c2 = target => { | |
const pre = 'https://www.binance.com/tradeDetail.html?symbol=' | |
window.open(`${pre}${target}_ETH`, '_blank') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment