Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Article - JavaScript startsWith method 4</title> </head> <body> <h2><code>startsWith</code> method: used to check starting of the string.</h2> <p><code>startsWith</code> method is case-sensitive.</p> <p>Press <kbd>F12</kbd> to open the console and see the output of the program.</p> <script> const str = "Learn to code"; console.log(str.startsWith("Learn")); // true console.log(str.startsWith("LEARN")); // false console.log(str.startsWith("learn")); // false </script> </body> </html>
RunĀ