Collapse to Definitions: CTRL + M + O
Expand all Outlining: CTRL + M + X
Every Question..What does it mean? Why is this? How it works?
Microsoft .Net (pronounced dot (.) net) may be a package element that runs on the Windows software package.
.Net provides tools and libraries that change developers to form Windows package a lot of quicker and easier.
Microsoft describes it as:".Net is that the Microsoft internet Service strategy to attach data, people,
system and devices through software".I'm Choulla Naresh..!
Strict equality (===) means values which we are comparing must have the same type. This means "2" will not be equal to 2 ("2"===2 it will return false)
Type converting equality (==) means automatically it will covert variable to value irrespective of data type, either it is string or number. This means "2" will be equal to 2 ("2" == 2 it will return true)
<!DOCTYPE HTML> <html> <head> <title>Jquery - Difference between == and ===</title> <script type="text/javascript"> function CheckDifference() { var val = "2"; document.write("Value for a variable is : " +val +"<br/>"); if (val == 2) document.write("== returns True <br/>") else document.write("== returns False <br/>") if (val === 2) document.write("=== returns True <br/>") else document.write("=== returns False <br/>") } </script> </head> <body> <h2>JQuery or JavaScript - Difference between == and ===</h2> <hr/> <br/> <div id="div1"> <input type="button" id="Check" onclick="CheckDifference()" value="Click to Check Difference" /> </div> </body> </html>
Library
|
Framework
|
·
A
library is a reusable piece of code which you use as it comes i.e. it does
not provide any hooks for you to extend it.
|
·
A
framework is a piece of code which dictates the architecture your project
will follow.
|
·
A
library will usually focus on a single piece of functionality, which you
access through an API.
|
·
Once
you choose a framework to work with, you have to follow the framework’s code
and design methodologies.
|
·
You
call a library function, it executes some code and then control is returned
to your code.
|
·
The
framework will provide you with hooks and callbacks, so that you build on it.
|
·
Library
doesn’t contain framework.
|
·
A
framework will usually include a lot of libraries to make your work easier
|