SlideShare uma empresa Scribd logo
1 de 5
Baixar para ler offline
Articles from Jinal Desai .NET
Exam 70-480 Javascript
2013-01-20 14:01:22 Jinal Desai

The article is intended for Microsoft Certification Exam 70-480 aspirants. All the
points covered in this article is described from exam 70-480 point of view only.
Some advanced topics like Promises, Web Worker, Web Sockets will be covered in
my next article.

Variable Types
string, number, boolean, array, objects, null, undefined

Functions
Callable Behaviors
Implemented as Objects
Hoisting: Call functions before they are defined is called hoisting.
f1();
function f1() {
alert(“f1”);
}

Function Arguments
Internally Passed: Contains all the arguments in “arguments” array variable.

Function Scope
e.g.
var ops={
add:function addNumbers(n1, n2) {
}
}
var x = ops.add(5,8); //valid
var y = ops.addNumbers(5, 8); //Invalid
//Function addNumbers can be called internally but not from outside
e.g.
function outer(n) {
function inner() {
return n*n;
}
return inner();
}

Immediate Functions
Immediate functions called automatically, no need to call it explicitly.
(function(){ }());
or
(function(){})();
Function as argument
function add(n1, n2) {
return n1+n2;
}
function calc(proc, n1, n2) {
return proc(n1, n2);
}
calc(add, 5, 8);

Arrays
Array functions:
push, pop, concat, map, filter, some, every, forEach, reduce, sort, splice, join,
reverse
var x=[];
var y=[6];
var fruit=[“apple”,”banana”];
fruit.push(“orange”);
var orange = fruit.pop();
var otherFruit = [“banana”];
fruit = fruit.concat(otherFruit);
var apple = fruit.splice(0,1); //0 to 1 items, 0 based array
var malon = fruit.splice(3,1,”malon”,”grapes”); //it will splice 4th item

Array Projections
fruit=fruit.map(function(i) {
return i.toUpperCase();
});

fruit=fruit.map(function(i){
return{ FruitName: i.toUpperCase();
});

fruit=fruit.filter(function(i){
return i[0]===’a';
});

bool result = fruit.every(function(i){
return i[0]===’a';
}); //returns true if every fruit name starts with ‘a’

bool result = fruit.every(function(i){
return i.length>0
}); //returns true if all the fruit name length is greater than 0.

bool result = fruit.some(function(i){
return i[0]===’a';
}); //returns true if some of the fruits starts with ‘a’.

var length=[];
fruit.forEach(function(i){
length[counter++]=i.length;
});

Objects in Javascript
var obj = { };
obj.FirstName=”Jinal”;
obj.SayHello=function(){ alert(“Hello”); };
or
var obj = {
FirstName = “Jinal”,
SayHello=function(){ alert(“Hello”); }
};

DOM Interactions
Quering the DOM
var x = document.getElementById(“anyId”);
or
var x = document.getElementById(“#anyId”);

var y = document.getElementByTagName(“h1”);
var z = document.querySelector(“.item”);
var collection = document.querySelectorAll(“.className”);

Manipulating DOM
var x = document.querySelector(“#anyId”);
x.innerText = “changed inner text”;
x.className = “NewClassName”;
x.classList.add(“item”);

Responding to events
Declarative
<button id=”button” onclick=”handler();”>Click Here</button>
//Javascript
function handler(){
}

Programmatic
var b=document.querySelector(“#button”);
b.addEventListener(“click”,handler);
or
b.onclick=handler;
or
//anonymous function
b.onclick=function(){
}

Remove event listener programmatically
b.removeEventListener(“click”, handler);
It is not possible to remove event once it is bind using declarative method.

Advanced Topics
Handling Exceptions
Two ways: Managing failure in code or minimizing failure in code.
How to manage failure in code?
Try{
}
catch(e){
}
finally{
}

function throwHelper(){
var error = new Error(123, “error”);
throw error;
}

try{
throwHelper();
}
catch(error){
var msg=error.number + “ : “ + error.message;
}

Another way to throw error in windows is
throw new WinJS.ErrorFromName(“args”,”error”);

Promises
Asynchronous Call
WinJS.xhr((url=”url”, headers={Accept:”application/json”}).then(
function(xhr){
var result = JSON.parse(xhr.response);});

Web Worker
WinJS.UI.Pages.define(“/pages/webworker/webworker.html”,
{ready:function(element,options){
var worker=new worker(“/pages/webworker/task.js”);
worker.onmessage=function(e){
logMessage(“The worker process said “ + e.message);
};
worker.postMessage(“Hey there, how are you?”);
}
};
//task.js
self.onMessage=function(e){
self.postMessage(“I am away “ + e.data);
};
Web Socket
It allows to talk to lower level http.
e.g. chat application

I will cover advanced Javascript topics like Promises, Web Worker and Web
Sockets in my next article.

Mais conteúdo relacionado

Último

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 

Último (20)

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 

Destaque

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 

Destaque (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 

Exam 70 480 Javascript at Jinal Desai .NET

  • 1. Articles from Jinal Desai .NET Exam 70-480 Javascript 2013-01-20 14:01:22 Jinal Desai The article is intended for Microsoft Certification Exam 70-480 aspirants. All the points covered in this article is described from exam 70-480 point of view only. Some advanced topics like Promises, Web Worker, Web Sockets will be covered in my next article. Variable Types string, number, boolean, array, objects, null, undefined Functions Callable Behaviors Implemented as Objects Hoisting: Call functions before they are defined is called hoisting. f1(); function f1() { alert(“f1”); } Function Arguments Internally Passed: Contains all the arguments in “arguments” array variable. Function Scope e.g. var ops={ add:function addNumbers(n1, n2) { } } var x = ops.add(5,8); //valid var y = ops.addNumbers(5, 8); //Invalid //Function addNumbers can be called internally but not from outside e.g. function outer(n) { function inner() { return n*n; } return inner(); } Immediate Functions Immediate functions called automatically, no need to call it explicitly. (function(){ }()); or (function(){})();
  • 2. Function as argument function add(n1, n2) { return n1+n2; } function calc(proc, n1, n2) { return proc(n1, n2); } calc(add, 5, 8); Arrays Array functions: push, pop, concat, map, filter, some, every, forEach, reduce, sort, splice, join, reverse var x=[]; var y=[6]; var fruit=[“apple”,”banana”]; fruit.push(“orange”); var orange = fruit.pop(); var otherFruit = [“banana”]; fruit = fruit.concat(otherFruit); var apple = fruit.splice(0,1); //0 to 1 items, 0 based array var malon = fruit.splice(3,1,”malon”,”grapes”); //it will splice 4th item Array Projections fruit=fruit.map(function(i) { return i.toUpperCase(); }); fruit=fruit.map(function(i){ return{ FruitName: i.toUpperCase(); }); fruit=fruit.filter(function(i){ return i[0]===’a'; }); bool result = fruit.every(function(i){ return i[0]===’a'; }); //returns true if every fruit name starts with ‘a’ bool result = fruit.every(function(i){ return i.length>0 }); //returns true if all the fruit name length is greater than 0. bool result = fruit.some(function(i){ return i[0]===’a'; }); //returns true if some of the fruits starts with ‘a’. var length=[];
  • 3. fruit.forEach(function(i){ length[counter++]=i.length; }); Objects in Javascript var obj = { }; obj.FirstName=”Jinal”; obj.SayHello=function(){ alert(“Hello”); }; or var obj = { FirstName = “Jinal”, SayHello=function(){ alert(“Hello”); } }; DOM Interactions Quering the DOM var x = document.getElementById(“anyId”); or var x = document.getElementById(“#anyId”); var y = document.getElementByTagName(“h1”); var z = document.querySelector(“.item”); var collection = document.querySelectorAll(“.className”); Manipulating DOM var x = document.querySelector(“#anyId”); x.innerText = “changed inner text”; x.className = “NewClassName”; x.classList.add(“item”); Responding to events Declarative <button id=”button” onclick=”handler();”>Click Here</button> //Javascript function handler(){ } Programmatic var b=document.querySelector(“#button”); b.addEventListener(“click”,handler); or b.onclick=handler; or //anonymous function b.onclick=function(){ } Remove event listener programmatically b.removeEventListener(“click”, handler);
  • 4. It is not possible to remove event once it is bind using declarative method. Advanced Topics Handling Exceptions Two ways: Managing failure in code or minimizing failure in code. How to manage failure in code? Try{ } catch(e){ } finally{ } function throwHelper(){ var error = new Error(123, “error”); throw error; } try{ throwHelper(); } catch(error){ var msg=error.number + “ : “ + error.message; } Another way to throw error in windows is throw new WinJS.ErrorFromName(“args”,”error”); Promises Asynchronous Call WinJS.xhr((url=”url”, headers={Accept:”application/json”}).then( function(xhr){ var result = JSON.parse(xhr.response);}); Web Worker WinJS.UI.Pages.define(“/pages/webworker/webworker.html”, {ready:function(element,options){ var worker=new worker(“/pages/webworker/task.js”); worker.onmessage=function(e){ logMessage(“The worker process said “ + e.message); }; worker.postMessage(“Hey there, how are you?”); } }; //task.js self.onMessage=function(e){ self.postMessage(“I am away “ + e.data); };
  • 5. Web Socket It allows to talk to lower level http. e.g. chat application I will cover advanced Javascript topics like Promises, Web Worker and Web Sockets in my next article.