Posts

Showing posts from February, 2016

Hello Angular

Image
this  is time to learn angular, here is  a hello! lets see how do we do abstraction in javascript. BTW {{ expression}}. wil be solved in any javascript librries we choose to use. Lets understand revealing pattern in jvascript. this revealing will help in distinguish functions from the list added. point any one thats needed for current context. #kishoretvk

sql server installation #kishoretvk

typeof tickles : javascript

#kishoretvk when using javascript type of, here is something cool to remember. if u have to compare string. then what goes corect typeof(variable) = string typeof(variable) = "String " typeof(variable) = "string" which is correct? #javascript #typeof #error  

JavavScript Puzzle

#kishoreTVK today a simple puzzle from javascript. <!DOCTYPE html> <html> <body> <p>Click the button to demonstrate the prompt box.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() {     var person = prompt("Please Enter your flight id!", "Harry Potter");     if (person != null) {         document.getElementById("demo").innerHTML =         "Hello " + person + "! Thanks for boarding our service";     } else { alert("Invalid name"); } } </script> </body> </html> thus my journey starts  the bug is simple one.