Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

二次封装typeof #459

Open
LittlebearHat opened this issue Feb 11, 2023 · 0 comments
Open

二次封装typeof #459

LittlebearHat opened this issue Feb 11, 2023 · 0 comments

Comments

@LittlebearHat
Copy link
Contributor

function myType(val) {
  let template = {
    "[object Array]": "array",
    "[object Object]": "object",
  };
  if (val === null) {
    return val;//如果为null则返回自己
  }
  if (typeof val === "object") {//对object进行二次检验
    let type1 = Object.prototype.toString.call(val);
    return template[type1];
  }
  return typeof val;//基本数据类型照常返回
}
console.log(myType([1, 2, 3]), typeof [1, 2, 3]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant