Difference between C# var and Javascript var
C#
var i = 10; // implicitly typed
int i = 10; //explicitly typed
//Initialization is mandatory
var a = 10;
//Allowed
a = 13;
//Not Allowed
a = "string";
By using above example we can say C# var is strongly typed, but inferred from whatever the value is being assigned.
Javascript
<script type="text/javascript">
var a = "stringValue";
a = 567;
a= "2ndString"; // allowed
</script>
Solution for the QlikView, Biztalk, DotNet and MSBI real time development problems
Search This Blog
Wednesday, November 9, 2011
Subscribe to:
Post Comments (Atom)
Popular Posts
-
BizTalk Developer Interview Questions and Answers : Schema 1. What is the purpose of a document schema? The schema is basically a contr...
-
When building controls dynamically which compose of sub-controls you can sometimes run into an problem where windows throws a “Error creati...
-
MVC Active Directory Attribute Based Authorization with example Active Directory based authorization in .NET is fairly easy. Just thr...
-
.Net Integration with Bill Desk Payment Gateway Introduction: Now-a-days online shopping websites has become very popular, and to h...
-
. In the ASP.NET runtime the life cycle of a page is marked by a series of events. In ASP.NET 1.x, based on user interaction a page request ...
No comments:
Post a Comment