Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Last active January 8, 2018 04:55
Show Gist options
  • Save bengrunfeld/aa43a3b91458509172bb465ab74ca88c to your computer and use it in GitHub Desktop.
Save bengrunfeld/aa43a3b91458509172bb465ab74ca88c to your computer and use it in GitHub Desktop.
Quickly open browser tabs
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