當(dāng)前位置:
首頁(yè) >
前端技术
> javascript
>内容正文
javascript
include函数_include()函数以及JavaScript中的示例
生活随笔
收集整理的這篇文章主要介紹了
include函数_include()函数以及JavaScript中的示例
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
include函數(shù)
includes() is a predefined function in JavaScript, which is used to check whether a given element exists in the array or not?
include()是JavaScript中的預(yù)定義函數(shù),用于檢查數(shù)組中是否存在給定元素?
Example:
例:
<html> <head> <title>JavaScipt Example</title> </head><body><script>//arrayvar cities = ["New Delhi", "Mumbai", "Chennai", "Banglore"];//checking whether "New Delhi" exists or notif(cities.includes("New Delhi")==true)document.write("New Delhi exists in the array");elsedocument.write("New Delhi does not exist in the array");document.write("<br>");//checking whether "Pune" exists or notif(cities.includes("Pune")==true)document.write("Pune exists in the array");elsedocument.write("Pune does not exist in the array");document.write("<br>"); </script> </body> </html>Output
輸出量
New Delhi exists in the array Pune does not exist in the array翻譯自: https://www.includehelp.com/code-snippets/includes-function-with-example-in-javascript.aspx
include函數(shù)
總結(jié)
以上是生活随笔為你收集整理的include函数_include()函数以及JavaScript中的示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: “神居既崇盛”下一句是什么
- 下一篇: 极米a1 和 极米a1pro 什么区别