0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JavaScriptで常にundefinedを返す関数の定義法

Posted at

概要

JavaScriptで常にundefinedを返す関数の定義法(一例)です。

// 空のreturnは常にundefinedを返す
function undefine(){
    return;
}

// undefinedか判定する
const isUndefined = (typeof undefine()) === "undefined";
console.log(isUndefined);

表示結果

true
0
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?