Difference between “==” and “===” operators

 Both are comparison operators. The difference between both the operators is that,“==” is used to compare values whereas, “ === “ is used to compare both value and types.


Example:

var x = 2;
var y = "2";
(x == y)  // Returns true since the value of both x and y is the same

(x === y) // Returns false since the typeof x is "number" and typeof y is "string"

No comments:

Post a Comment

HiQPdf – Convert URL to PDF and Stream to Browser (ASP.NET)

 using System; using System.Web; using HiQPdf; public class PdfController : System.Web.UI.Page {     protected void Page_Load(object sender,...

Best for you