string variable javascript code example

Example 1: Create variable javascript

//Assigns the value bar to the variable foo
var foo = bar;

Example 2: javascript define variable

var variable1 = "some variable content";

Example 3: js var in string

// in your string you can call your variable like ${myVar}. eg:
var myVar = "blue";
console.log("The sky is " + myVar + ".");
// Output: "The sky is blue."

Example 4: 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 5: 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>