
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
~JavaScript~残り何日?をやりたくて - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
~JavaScript~残り何日?をやりたくて - Qiita
getLimit(limit) {// 2020/10/05 const d = new Date() const nowDate = new Date(d.getFullYear(), d.g... getLimit(limit) {// 2020/10/05 const d = new Date() const nowDate = new Date(d.getFullYear(), d.getMonth(), d.getDate())//今の日付 const year = Number(limit.slice(0, 4)) const month = Number(limit.slice(5, 7)) - 1 const date = Number(limit.slice(8, 10)) const limitDate = new Date(year, month, date)//期限日 const day = 1000 * 60 * 60 * 24//一日のミリ秒の値 return (limitDate - nowDate) / day },