Skip to content

john-azzaro/-JavaScript_Recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

724 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript Recipes

What are JavaScript Recipes?

JavaScript Recipes interesting problems/concepts from research, tutorials, mentor sessions, peer discussions, requested problem explainations, etc.

Why JavaScript Recipes?




Variable and Datatype Questions
What is a variable?
Click to see answer
<dd><i>   A <b>variable</b> is a name attached to a value.   </i></dd>
<dd><i>   A <b>variable</b> stores and keeps track of information within a program.   </i></dd>
Click to see additional questions
Is this an addtional question?
Yes, this is an additional question!
Click to see example
        var redFruit = 'apple';       
        console.log(redFruit)       //-> apple

        let yellowFruit = 'banana';
        console.log(yellowFruit)    //-> banana

        const greenFruit = 'kiwi'
        console.log(greenFruit)     //-> kiwi

stuff with *mark* **down**

formatted heading with a


{{standard 3-backtick code block omitted from here due to escaping issues}}

Collapsible until here.

Releases

No releases published

Packages

 
 
 

Contributors

Languages