js-by-examples
js-by-examples copied to clipboard
Learn JavaScript by examples
I think that would be a great idea to add some example to help who is a noob or to help who have no experience with Javascript.
Is there an advantage to hosting the examples in an example folder versus the wiki in the repo?
Hi Manoj, We have to update **functions_inside_conditional_blocks.md** New JS engines obaying conditional functional declarations. Run the code of **functions_inside_conditional_blocks.md** in console: output will be: ``` innerFunc: Inside if innerFuncExpr: Inside...
# Scope let var const ```js function hi () { alert("hi") } hi = function () { alert("hello") } console.log(hi()); //"hello" ``` better ```js const hi = function () {...