
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check If String Starts With Another String in JavaScript
We are required to write a JavaScript function that takes in two strings and checks whether first string starts with second or not
For example −
If the two strings are: “Disaster management report” “Disas” Then our function should return true
Let's write the code for this function −
Example
const first = 'The game is on'; const second = 'The'; const startsWith = (first, second) => { const { length } = second; const { length: l } = first; const sub = first.substr(0, length); return sub === second; }; console.log(startsWith(first, second));
Output
The output in the console will be −
true
Advertisements