Javascript Special Operators

Operator Description (?:) Conditional Operator typeof Returns the type of object instanceof Returns true if an object is an instance of an object type   JavaScript Special Operators Example: <html> <head> <script type=”text/javascript”> var a = 10; var b = 20; var c = 10; var d = “String”; var linebreak = “<br />”; document.write … Read more