In order to know if a particular String contains a given word or a substring you can make use of the indexOf() method in JavaScript
String.prototype.indexOf(): The indexOf method will return the index of the calling String object, it will return the first occurrence of the provided substring value. It will return -1 if the provided substring is not found.
Example:<h2>JavaScript Substring example:</h2>
<div id="myString1">This is some text and i want to find if the work
apple is in this string or not!</div>
<br/>
<div id="myString2">This string does not contains that word!</div>
var val1 = document.getElementById("myString1").innerHTML.indexOf("apple");
var val2 = document.getElementById("myString2").innerHTML.indexOf("apple");
if(val1 > -1) {
console.log("myString1 contains the word apple!");
} else {
console.log("myString1 does not contain the word apple!")
}
if(val2 > -1) {
console.log("myString2 contains the word apple!");
} else {
console.log("myString2 does not contain the word apple!")
}
Output:
"myString1 contains the word apple!"
"myString2 does not contain the word apple!"

JavaScript contains substring example code
More Posts related to JavaScript,
- Get Device Screen Width and Height using javaScript
- How to Print from JavaScript HTML using window.print
- Send Extra Data with Ajax Get or Post Request
- How to get UTC (GMT) time using JavaScript
- How to detect Browser and Operating System Name and Version using JavaScript
- Fix: Error: error:0308010C:digital envelope routines::unsupported NodeJs/Vue/React
- How to send email from JavaScript HTML using mailto
- Remove items from JavaScript array
- JavaScript : Get current page address
- Add Animated Scrolling to Html Page Title Script
- [javaScript] Convert text case to lowercase
- JavaScript date in yyyy-MM-dd format
- Power of Print Statements in JavaScript: A Comprehensive Guide
- Submit html form on dropdown menu value selection or change using javascript
- Write javaScript code in Swedish using FikaScript
- Javascript convert text case from uppercase to lowercase
- Excel Fix: SECURITY RISK Microsoft has blocked macros from running because the source of this file is untrusted.
- JavaScript: Count Words in a String
- Meaning of javascript:void(0) explained with example
- JavaScript: Generate Random Numbers between 1 and 3
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to get current URL Location using Javascript HTML
- Fix: SyntaxError: The requested module does not provide an export named default
- Fix: Error: Cannot find module /node-examples/init
- JavaScript: Check if variable is a number
More Posts:
- Bootstrap Nav Menu Dropdown on hover - Bootstrap
- JavaScript: Check if variable is a number - JavaScript
- Android : IOException: Unable to open sync connection! - Android
- 22: Send Yahoo! Email using smtplib - SMTP protocol client using Python Program - Python-Programs
- Java 7 addSuppression() and getSuppression() Exception Handling - Java
- How to delete a dir or folder using Python code - Python
- How to turn on channel notifications for Microsoft Teams - Teams
- Open PowerShell Terminal in Visual Studio Code (VSCode) - Powershell