Note: In Advanced I selected some contents that might present some comprehension difficulty, longer explanations or simply are weird or tricky questions. Good luck!
In order to detect the operating system on the client machine, the navigator. Platform string (property) should be used.
Void(0) is used to prevent the page from refreshing, and parameter “zero” is passed while calling.
Void(0) is used to call another method without refreshing the page.
Cookies are the small test files stored in a computer, and they get created when the user visits the websites to store information that they need. For example: user, name, details and shopping cart information from previous visits.
A cookie is a piece of data stored on your computer to be accessed by your browser. You also might have enjoyed the benefits of cookies knowingly or unknowingly. Have you ever saved your Facebook password so that you do not have to type it every time you try to login? If yes, then you are using cookies. Cookies are saved as key/value pairs.
document.cookie = "cookiename=cookievalue"
You can even add an expiry date to your Cookie to remove the particular Cookie from the computer on the specified date. The expiry date should be set in the UTC/GMT format. If you do not set the expiry date, the cookie will be removed when the user closes the browser.
document.cookie = "cookiename=cookievalue; expires= Thu, 21 Aug 2014 20:00:00 UTC"
You can also set the domain and path to specify which domain and to which directories in the specific domain the Cookie belongs to. By default, a cookie belongs to the page that sets the Cookie.
document.cookie = "cookiename=cookievalue; expires= Thu, 21 Aug 2014 20:00:00 UTC; path=/
//create a cookie with a domain to the current page and a path to the entire domain.
You can access the Cookie like this, which will return all the cookies saved for the current domain:
var x = document.cookie
To delete a cookie, you just need to set the cookie’s value to empty and set the value of expires to a passed date.
<html>
<head>
<title>Cookie!!!</title>
<script type="text/javascript">
function createCookie(cookieName,cookieValue,daysToExpire)
{
var date = new Date();
date.setTime(date.getTime()+(daysToExpire*24*60*60*1000));
document.cookie = cookieName + "=" + cookieValue + "; expires=" + date.toGMTString();
}
function accessCookie(cookieName)
{
var name = cookieName + "=";
var allCookieArray = document.cookie.split(';');
for(var i=0; i<allCookieArray.length; i++)
{
var temp = allCookieArray[i].trim();
if (temp.indexOf(name)==0)
return temp.substring(name.length,temp.length);
}
return "";
}
function checkCookie()
{
var user = accessCookie("testCookie");
if (user!="")
alert("Welcome Back " + user + "!!!");
else
{
user = prompt("Please enter your name");
num = prompt("How many days you want to store your name on your computer?");
It (user!="" && user!=null)
{
createCookie("testCookie", user, num);
}
}
}
</script>
</head>
<body onload="checkCookie()"></body>
</html>
JS does not have concept-level scope. The variable declared inside the function has scope inside the function.
The try...catch...finally statements combo handles errors without stopping JavaScript. The technical term for this is is: JavaScript throws an exception.JS creates an Error object with two properties: name and message.
try {
tryCode - Code block to run.
}
catch(err) {
catchCode - Code block to handle errors.
}
finally {
finallyCode - Code block to be executed regardless of the try result.
}
Using throw with try and catch, lets you control program flow and generate custom error messages.
document.write("Welcome"); is used to print the text–Welcome on the screen.
In JS here are three types of errors:
Under the strict Mode, JS shows errors for a piece of code, which did not show an error before, but might be problematic and potentially unsafe. Strict Mode also solves some mistakes that hamper the JS engines from working efficiently.
Strict mode can be enabled by adding the string literal "use strict" above the file:
function myfunction() {
"use strict;"
var v = "This is a strict mode function";
}
JS allows DOM elements to be nested inside each other. In such a case, if the handler of the child is clicked, the handler of the parent will also work as if it were clicked too.
Both web-garden and web-farm are web hosting systems.
Screen objects are used to read the information from the client’s screen. The properties of screen objects are:
The escape () function is responsible for coding a string to transfer the information from one computer to the other across a network:
<script>
document.write(escape("Hello? How are you!"));
</script>
Output: Hello%3F%20How%20are%20you%21
The unescape() function is very important as it decodes the coded string:
<script>
document.write(unescape("Hello%3F%20How%20are%20you%21"));
</script>
Output: Hello? How are you!
EncodeURl() is used to convert URL into their hex coding. And DecodeURI() is used to convert the encoded URL back to normal.
<script>
var uri="my test.asp?name=ståle&car=saab";
document.write(encodeURI(uri)+ "<br>"); // Output: my%20test.asp?name=st%C3%A5le&car=saab
document.write(decodeURI(uri)); // Output: my test.asp?name=ståle&car=saab
</script>
The Array object has many properties and methods which help developers to handle arrays easily and efficiently. You can get the value of a property by specifying arrayname.property and the output of a method by specifying arrayname.method().
<html>
<head>
<title>Arrays!!!</title>
<script type="text/javascript">
var students = new Array("John", "Ann", "Aaron", "Edwin", "Elizabeth");
Array.prototype.displayItems=function(){
for (i=0;i<this.length;i++){
document.write(this[i] + "<br />");
}
}
document.write("students array<br />");
students.displayItems();
document.write("<br />The number of items in students array is " + students.length + "<br />");
document.write("<br />The SORTED students array<br />");
students.sort();
students.displayItems();
document.write("<br />The REVERSED students array<br />");
students.reverse();
students.displayItems();
document.write("<br />THE students array after REMOVING the LAST item<br />");
students.pop();
students.displayItems();
document.write("<br />THE students array after PUSH<br />");
students.push("New Stuff");
students.displayItems();
</script>
</head>
<body>
</body>
</html>