Upgrade to Pro — share decks privately, control downloads, hide ads and more …

コメントアウトするべきでは「ない」こと

Sponsored · Your Podcast. Everywhere. Effortlessly. Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
Avatar for ミカイ ミカイ
April 02, 2024
100

 コメントアウトするべきでは「ない」こと

Avatar for ミカイ

ミカイ

April 02, 2024
Tweet

More Decks by ミカイ

Transcript

  1. 自己紹介
 • 三海純(ミカイ ジュン)
 • フリーランスエンジニア
 ◦ Next.jsの新規開発 + Laravel


    ◦ Python API新規開発・設計
 • 趣味
 ◦ アニメ(BanG Dream!・ぼざろ 等)
 ◦ ネット麻雀(雀魂・雀豪)

  2. キャリア
 • 2020/06 - 2022/02: 正社員(受託企業)
 ◦ Vue.js/Nuxt.jsをメイン
 • 2022/03

    - 2023/09: 正社員(自社開発)
 ◦ バックエンドはPython / Nest.js(Node.js)
 ◦ フロントエンドはReact.jsとNext.js
 • 2023/10 - : フリーランス(自社開発)
 ◦ Next.jsの新規開発とバックエンドを担当
 ◦ Python APIの新規開発・設計

  3. // 金額を計算する const calculatePrice = (price, quantity) => { //

    priceとquantityをかけて合計を計算 return price * quantity } const price = calculatePrice(1000, 3)
  4. コメント必要ですか?
 // 金額を計算する const calculatePrice = (price, quantity) => {

    // priceとquantityをかけて合計を計算 return price * quantity } const price = calculatePrice(1000, 3)
  5. つまり赤枠部分が「カツ丼」になる
 // 金額を計算する const calculatePrice = (price, quantity) => {

    // priceとquantityをかけて合計を計算 return price * quantity } const price = calculatePrice(1000, 3)