use variable in string javascript code example

Example 1: how to put variable in string javascript

var myInt = 1
console.log(`my variable is ${myInt}`);
// my variable is 1

Example 2: how to declare variables javascript

//variables are a way to easily store data in javascript
//variables are declared by the var keyword, example...
var x = 10;
//or
var dog_name = "daisy";
//which can also be written as 
var dog_name = 'daisy';
//same thing with single quotes and double quotes

Example 3: how to use string variable in javascript

<html>
   <head>
      <title>JavaScript Strings</title>
   </head>
   <body>
      <script>
         var re = "java";
         var str = "Learn java";
         if ( str.search(re) == -1 ){
            document.write("Not found!" );
         } else {
            document.write("Found!" );
         }
     </script>
   </body>
</html>