当前位置:网站首页>Determine whether an attribute exists in an object
Determine whether an attribute exists in an object
2022-06-28 05:20:00 【Zhangshao】
Determine whether an attribute exists in the object
Write it correctly
/** * Determine whether an attribute exists in the object * @param {Object} obj object * @param {Sting} key Property name */
function hasProperty(obj,key){
return key in obj;
}
Wrong writing
function hasProperty(obj,key){
return obj.key !== undefined; // The wrong way out.
}
function hasProperty(obj,key){
return obj[key] !== undefined; // The value of an attribute in an object cannot be determined to be undefined Properties of
}
Such as
var obj = {
a:undefined}
function hasProperty(obj,key){
return Object.keys(obj).includes(key)
}
// Unable to get usage defineProperty Properties added
Object.defineProperty(obj,'c',{
enumberable:false,
value: 1
})
function hasProperty(obj,key){
return obj.hasOwnProperty(key) // Unable to find data on prototype chain
}
边栏推荐
- 如何从零设计一款牛逼的高并发架构(建议收藏)
- Pcr/qpcr research: lumiprobe dsgreen is used for real-time PCR
- Docker安装Mysql5.7并开启binlog
- 刘海屏手机在部分页面通过[[UIApplication sharedApplication] delegate].window.safeAreaInsets.bottom得到底部安全区高度为0问题
- Operation of simulated examination platform of G3 boiler water treatment recurrent training question bank in 2022
- Unity out ref params
- Extjs图书管理系统源码 智能化图书管理系统源码
- 改性三磷酸盐研究:Lumiprobe氨基-11-ddUTP
- 基于微信小程序的婚纱影楼门户小程序
- Opencv实现颜色检测
猜你喜欢
DH parameters of robotics and derivation using MATLAB symbolic operation
二级造价工程师证书含金量到底有多高?看这些就知道了
Biovendor sRAGE protein solution
How to do a good job of gateway high availability protection in the big promotion scenario
[leetcode] 12. Integer to Roman numeral
学习太极创客 — MQTT 第二章(五)心跳机制
2022 high altitude installation, maintenance and removal examination questions and answers
wordpress zibll子比主题6.4.1开心版 免授权
How to learn programmable logic controller (PLC)?
交流电和直流电的区别是什么?
随机推荐
Operation of 2022 power cable judgment question simulation examination platform
Learning Tai Chi Maker - mqtt Chapter II (VI) mqtt wills
开关电源电压型与电流型控制
gorm事务体验
Don't roll! How to reproduce a paper with high quality?
Redis 的 最新windows 版本 5.0.14
Is it enough for the project manager to finish the PMP? no, it isn't!
[skywalking] learn distributed link tracking skywalking at one go
2022年材料员-通用基础(材料员)操作证考试题库及答案
2022 high altitude installation, maintenance and removal examination questions and answers
2022新版nft源码中国元宇宙数字藏品艺术品交易平台源码
How does the power outlet transmit electricity? Simple problems that have plagued my little friend for so many years
【Linux】——使用xshell在Linux上安装MySQL及实现Webapp的部署
Lumiprobe cell imaging analysis: PKH26 cell membrane labeling kit
Understanding the source of innovation II
Simple usage of GSAP
羧酸研究:Lumiprobe 磺基花青7二羧酸
MySQL 45讲 | 05 深入浅出索引(下)
quartus 复制IP核
Performance degradation during dpdk source code testing