sql语句中的in用法示例_示例中JavaScript in操作符

sql语句中的in用法示例

One of the first topics you’ll come across when learning JavaScript (or any other programming language) are operators.

学习JavaScript(或任何其他编程语言)时遇到的第一个主题之一是运算符。

The most common operators are the arithmetic, logical, and comparison operators. But did you know that JavaScript has an in operator?

最常见的运算符是算术,逻辑和比较运算符。 但是您知道JavaScript具有in运算符吗?

If you didn't, don’t fret. I just came across it recently while searching for a solution to a problem on Google.

如果没有,请不要担心。 我最近在Google上寻找问题的解决方案时碰到了它。

In this article, you’ll learn exactly what the JavaScript in operator does, when to use it, and how to use it.

在本文中,您将确切地了解JavaScript in运算符的功能,何时使用它以及如何使用它。

JavaScript in运算符到底是什么? (What exactly is the JavaScript in operator?)

The JavaScript in operator is used to check if a specified property exists in an object or in its inherited properties (in other words, its prototype chain). The in operator returns true if the specified property exists.

JavaScript in运算符用于检查对象或其继承的属性(即,其原型链)中是否存在指定的属性。 如果指定的属性存在,则in运算符将返回true

The JavaScript prototype chain is how objects or object instances have access to properties and methods that were not originally theirs. These objects inherit properties and methods defined in their constructors or prototypes, which can be accessed through their __proto__ property.

JavaScript原型链是对象或对象实例如何访问最初不是其属性和方法的属性。 这些对象继承了在其构造函数或原型中定义的属性和方法,可以通过其__proto__属性对其进行访问。

This article assumes that you have a basic understanding of what objects are, how to create them, what they are used for, and how JavaScript inheritance works. If you don’t, this article on MDN should help.

本文假定您对什么是对象,如何创建它们,将它们用于什么以及JavaScript继承如何工作有基本的了解。 如果您不这样做,那么有关MDN的这篇文章应该会有所帮助。

何时在操作符中使用JavaScript (When to use the JavaScript in operator)

验证对象上是否存在属性 (To verify if a property exists on an object)

const car = {make: 'Toyota',model:'Camry',year: '2018',start: function() {console.log(`Starting ${this.make} ${this.model}, ${this.year}`);}
}'make' in car // Returns true.
'start' in car // Returns true.
'Toyota' in car // Returns false. 'Toyota' is not a property name, but a value.

验证属性是否被对象继承。 (To verify if a property is inherited by an object.)

Let’s use the ES6 class syntax to create an object constructor. This would also apply to function constructors:

让我们使用ES6类语法创建对象构造函数。 这也适用于函数构造函数:

class Car {constructor(make, model, year) {this.make = make;this.model = model;this.year = year;}start() {console.log(`Starting ${this.make} ${this.model}, ${this.year}`);}
}const toyota = new Car('Toyota', 'Camry', '2018');'start' in toyota;
/* Returns true as toyota is an instance of the Car object constructor. The toyota object therefore inherits all properties of the Car constructor. */'toString' in toyota;
/* Returns true. toString is a method property of the Object type, of which the Car constructor is an instance of. */

验证数组中是否存在索引/键。 (To verify if an index/key exists on an array.)

You might be wondering, since we established that the JavaScript in operator can be used with objects, why can we also use it with arrays?

您可能想知道,既然我们确定JavaScript in操作符可以与对象一起使用,为什么我们也可以将其与数组一起使用?

Well, an array is actually a prototype (instance) of the Object type. In fact, everything in JavaScript is an instance of the Object type.

好吧,数组实际上是Object类型的原型(实例)。 实际上,JavaScript中的所有内容都是Object类型的实例。

That may sound crazy, but lets run a simple program in the browser's console to confirm.

这听起来很疯狂,但是让我们在浏览器的控制台中运行一个简单的程序进行确认。

First, define an array and confirm if its an instance of the Object type using the instanceof operator:

首先,定义一个数组,并使用instanceof运算符确认其是否为Object类型的instanceof

const number = [2, 3, 4, 5];number instanceof Object // Returns true

Still in doubt? Type number into the console and press enter, then open up the output.

还是有疑问吗? 键入number到控制台,然后按回车,然后打开输出。

You’ll notice a list of properties, one of which is __proto__ which points to Array. Opening that too and going down that list bring us to another __proto__ property with a value of Object.

您会注意到一系列属性,其中一个是__proto__ ,它指向Array 。 也打开它并在列表中__proto__会带我们到另一个具有Object值的__proto__属性。

That shows that the number array is an instance of the Array type which is an instance of the Object type.

这表明number数组是Array类型的实例,而Array类型是Object类型的实例。

Now, back to using the in operator:

现在,回到使用in运算符:

const number = [2, 3, 4, 5];3 in number // Returns true.
2 in number // Returns true.5 in number // Returns false because 5 is not an existing index on the array but a value;'filter' in number
/* Returns true because filter is a method property on the Array type of which the number array is an instance of. The number array inherits the filter property.*/

验证HTML元素上是否存在属性 (To verify if a property exists on a Html element)

In Kirupa's article, Check If You Are On a Touch Enabled Device, he highlights this function:

在Kirupa的文章中,“ 检查您是否在启用触摸的设备上” ,他强调了此功能:

function isTouchSupported() {var msTouchEnabled = window.navigator.msMaxTouchPoints;var generalTouchEnabled = "ontouchstart" in document.createElement("div");if (msTouchEnabled || generalTouchEnabled) {return true;}return false;
}

This function returns true if you are on a device that supports touch and returns false if you are on a device that doesn't support touch by checking if the properties window.navigator.msMaxTouchPoints and ontouchstart are present. These properties only exist on devices that are touch enabled.

如果您在支持触摸的设备上,则此函数返回true如果您在不支持触摸的设备上,则通过检查属性window.navigator.msMaxTouchPointsontouchstart是否存在,返回false 。 这些属性仅存在于启用触摸的设备上。

Pretty straightforward!

非常简单!

Lets focus on the highlighted line. Remember how we established that the in operator returns true if the specified property exists in an object? HTML elements used in JavaScript actually become instances of the Object type, hence the name "Document Object Model" or DOM.

让我们专注于突出显示的行。 还记得我们如何确定如果对象中存在指定的属性,则in运算符将返回true ? JavaScript中使用HTML元素实际上成为Object类型的实例,因此名称为“文档对象模型”或DOM。

Of course, you might not believe me without some sort of proof. As before, let’s type some commands into the console.

当然,如果没有任何证据,您可能不会相信我。 和以前一样,让我们​​在控制台中输入一些命令。

Create a div element and list out its properties using console.dir():

创建一个div元素,并使用console.dir()列出其属性:

const element = document.createElement('div');console.dir(element);

You'll then see the div element with its properties listed in the console.

然后,您将在控制台中看到div元素及其属性。

Open the drop down and you’ll notice that it has a __proto__ property of HtmlDivElement. Open that and you’ll find another __proto__ property of HtmlElement, then Element, Node, Eventtarget, and finally Object.

打开下拉列表,您会注意到它具有HtmlDivElement__proto__属性。 打开它,您将找到HtmlElement另一个__proto__属性, 然后是ElementNodeEventtarget ,最后是Object

Also run:

同时运行:

element instanceof Object

This will return true, showing that the div element is an instance of the Object type, which is why the in operator can be used on it.

这将返回true ,表明div元素是Object类型的实例,这就是为什么可以在其上使用in运算符的原因。

结论 (Conclusion)

You’ve learned about the not so popular JavaScript in operator, which is used to verify the presence of properties on an object or Object type instances. This should come in handy when writing verification logic.

您已经了解了不太流行JavaScript in运算符,该运算符用于验证对象或Object类型实例上属性的存在。 在编写验证逻辑时,这应该派上用场。

If you liked this article, you’ll definitely like other articles on my blog codewithlinda.com. There I publish beginner friendly articles on frontend development sans technical jargon (as much as possible) 😁.

如果您喜欢这篇文章,那么您肯定会喜欢我的博客codewithlinda.com上的其他文章。 我在那里发表有关前端开发的初学者友好文章,没有技术术语(尽可能)。

翻译自: https://www.freecodecamp.org/news/the-javascript-in-operator-explained-with-examples/

sql语句中的in用法示例

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390221.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vue项目实战总结

马上过年了,最近工作不太忙,再加上本人最近比较懒,毫无斗志,不愿学习新东西,或许是要过年的缘故(感觉像是在找接口)。 就把前一段时间做过的vue项目,进行一次完整的总结。 这次算是详细总结,会从…

Linux !的使用

转自:https://www.linuxidc.com/Linux/2015-05/117774.htm 一、history    78 cd /mnt/ 79 ls 80 cd / 81 history 82 ls 83 ls /mnt/ !78 相当于执行cd /mnt !-6 也相当于执行cd /mnt 二、!$ cd /mnt ls !$ 相当于执行 ls /mnt转载于:https://www.cnblogs.…

881. 救生艇

881. 救生艇 第 i 个人的体重为 people[i],每艘船可以承载的最大重量为 limit。 每艘船最多可同时载两人,但条件是这些人的重量之和最多为 limit。 返回载到每一个人所需的最小船数。(保证每个人都能被船载)。 示例 1: 输入:…

使用python数据分析_如何使用Python提升您的数据分析技能

使用python数据分析If youre learning Python, youve likely heard about sci-kit-learn, NumPy and Pandas. And these are all important libraries to learn. But there is more to them than you might initially realize.如果您正在学习Python,则可能听说过sci…

openresty 日志输出的处理

最近出了个故障,有个接口的请求居然出现了长达几十秒的处理时间,由于日志缺乏,网络故障也解除了,就没法再重现这个故障了。为了可以在下次出现问题的时候能追查到问题,所以需要添加一些追踪日志。添加这些追踪日志&…

谁是赢家_赢家的真正作品是股东

谁是赢家As I wrote in the article “5 Skills to Look For When Hiring Remote Talent,” remote work is a fast emerging segment of the labor market. Today roughly eight million Americans work remotely full-time. And among the most commonly held jobs include m…

博客园代码黑色主题高亮设置

参考链接: https://segmentfault.com/a/1190000013001367 先发链接,有空实践后会整理。我的GitHub地址:https://github.com/heizemingjun我的博客园地址:http://www.cnblogs.com/chenmingjun我的蚂蚁笔记博客地址:http…

Matplotlib课程–学习Python数据可视化

Learn the basics of Matplotlib in this crash course tutorial. Matplotlib is an amazing data visualization library for Python. You will also learn how to apply Matplotlib to real-world problems.在此速成班教程中学习Matplotlib的基础知识。 Matplotlib是一个很棒…

Android 开发使用 Gradle 配置构建库模块的工作方式

Android 开发过程中,我们不可避免地需要引入其他人的工作成果。减少重复“造轮子”的时间,投入到更有意义的核心任务当中。Android 库模块在结构上与 Android 应用模块相同。提供构建应用所需的一切内容,包括源代码(src&#xff0…

vue 组件库发布_如何创建和发布Vue组件库

vue 组件库发布Component libraries are all the rage these days. They make it easy to maintain a consistent look and feel across an application. 如今,组件库风行一时。 它们使在整个应用程序中保持一致的外观和感觉变得容易。 Ive used a variety of diff…

angular

<input type"file" id"one-input" accept"image/*" file-model"images" οnchange"angular.element(this).scope().img_upload(this.files)"/>转载于:https://www.cnblogs.com/loweringye/p/8441437.html

Java网络编程 — Netty入门

认识Netty Netty简介 Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients. Netty is a NIO client server framework which enables quick and easy development o…

har文件分析http_如何使用HAR文件分析一段时间内的性能

har文件分析httpWhen I consider the performance of a website, several things come to mind. I think about looking at the requests of a page, understanding what resources are being loaded, and how long these resources take to be available to users.当我考虑网站…

第一阶段:前端开发_Mysql——表与表之间的关系

2018-06-26 表与表之间的关系 一、一对多关系&#xff1a; 常见实例&#xff1a;分类和商品&#xff0c;部门和员工一对多建表原则&#xff1a;在从表&#xff08;多方&#xff09;创建一个字段&#xff0c;字段作为外键指向主表&#xff08;一方&#xff09;的一方      …

按钮提交在url后添加字段_在输入字段上定向单击“清除”按钮(X)

按钮提交在url后添加字段jQuery makes it easy to get your project up and running. Though its fallen out of favor in recent years, its still worth learning the basics, especially if you want quick access to its powerful methods.jQuery使您可以轻松启动和运行项目…

429. N 叉树的层序遍历

429. N 叉树的层序遍历 给定一个 N 叉树&#xff0c;返回其节点值的层序遍历。&#xff08;即从左到右&#xff0c;逐层遍历&#xff09;。 树的序列化输入是用层序遍历&#xff0c;每组子节点都由 null 值分隔&#xff08;参见示例&#xff09;。 - 示例 1&#xff1a;输入…

javascript如何阻止事件冒泡和默认行为

阻止冒泡&#xff1a; 冒泡简单的举例来说&#xff0c;儿子知道了一个秘密消息&#xff0c;它告诉了爸爸&#xff0c;爸爸知道了又告诉了爷爷&#xff0c;一级级传递从而以引起事件的混乱&#xff0c;而阻止冒泡就是不让儿子告诉爸爸&#xff0c;爸爸自然不会告诉爷爷。下面的d…

89. Gray Code - LeetCode

为什么80%的码农都做不了架构师&#xff1f;>>> Question 89. Gray Code Solution 思路&#xff1a; n 0 0 n 1 0 1 n 2 00 01 10 11 n 3 000 001 010 011 100 101 110 111 Java实现&#xff1a; public List<Integer> grayCode(int n) {List&…

400. 第 N 位数字

400. 第 N 位数字 在无限的整数序列 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, …中找到第 n 位数字。 注意&#xff1a;n 是正数且在 32 位整数范围内&#xff08;n < 231&#xff09;。 示例 1&#xff1a; 输入&#xff1a;3 输出&#xff1a;3 示例 2&#xff1a; 输入&…

1.初识Linux

1.Linux 区分大小写 2.shell命令行-bash 进入终端->[stulocalhost~]$ (其中,Stu为登录用户名&#xff0c;localhost为登录主机名&#xff0c;’~’ 表示当前用户正处在stu用户的家目录中, 普通用户的提示符以$结尾&#xff0c;而根用户以’#’结尾) 3.Linux中所谓的命令(…