SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
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.

Weitere ähnliche Inhalte

Kürzlich hochgeladen

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Kürzlich hochgeladen (20)

Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 

Empfohlen

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
ThinkNow
 
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
Kurio // The Social Media Age(ncy)
 

Empfohlen (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.