Must call super constructor in derived class before accessing ‘this’ or returning from derived constructorエラー解決

Must call super constructor in derived class before accessing 'this' or returning from derived constructorエラー解決 ESLintは’this’ is not allowed before ‘super()’というエラーを吐き出す場合があります。
これはclassのstateコンポーネントを使う時に発生するエラーです。
constructor(props)の処理を入れた時にreactのコンポーネントはComponentのClassを参照しているので、
super(props)を書かなければなりません。

```javascript import React, { Component } from ‘react’;

parameterとargumentの違い

parameterとargumentの違い 業務でプログラミングを使用する場合は開発用語について理解して使わなければなりません。
開発者ってプログラミングができるということよりもコミュニケーションの用語が大事です。
なので、今回はパラメーターとアーギュメントの違いについて簡単に説明をします。

parameterとは

プログラミング上のparameter(パラメーター)は制限した関数の中にある仮引数を意味します。

function Sum(a, b) {
  return a + b;
}

上記のソースコードで関数の隣にあるa, bがパラメーターになります。

Pagination