ume

2024-03-12から1日間の記事一覧

javascript エンジニアが実務でよく使うjsのMathオブジェクト

目次 Math.random() Math.round(数値) Math.ceil(数値) Math.floor(数値) 1. Math.random() ⇨0~1までのランダムの数値を作成します。 console.log(Math.random()) #出力結果 0.04764646236311276 1. Math.round(数値) ⇨四捨五入する console.log(Math.round(…

rails7 メンターさんからのフィードバック

指摘箇所2つ ルーティングでresourcesを使う パーシャルを使う ルーティングでresourcesを使う 修正前(私のコード) Rails.application.routes.draw do root to: 'product#new' get 'product/show/:id', to: 'product#show', as: 'product_show' end 修正後(…