playground

The world is a playground.

2018-05-15から1日間の記事一覧

Ether の日本円価格を取得

Ether の日本円価格(レート)を取得する方法です。 coinmarketcap の API を使用します。 Node.js によるサンプルコード let https = require('https'); const url = 'https://api.coinmarketcap.com/v2/ticker/1027/?convert=JPY'; https.get(url, (respon…

JavaScript で曜日を取得

var week = 'Sun,Mon,Tue,Wed,Thu,Fri,Sat'; var dow = week.split(',')[new Date().getDay()];