www.vedisoft.com

Software Consultancy, Development and Training

JavaScript Reference Data Types Numeric integer floating-point String Boolean(true|false)

Variables var variableName • must begin with an alphabetic character or the underscore ( _ ) character • can be composed of letters, numerals, or the underscore character • cannot contain blank spaces • cannot be the same as a JavaScript reserved word, which is a word that

has a special meaning in the JavaScript language.

Operators Arithmetic Operators Operator +

Action Adds two values together

-

Subtracts one value from another or changes a value to its negative

*

Multiplies two values together

/

Divides one value by another

%

Produces the remainder after dividing one value by another

++

Increments a numeric value by 1 (adds 1 to it)

--

Decrements a numeric value by 1 (subtracts 1 from it) X += Y The equivalent of X = X + Y: add Y to X, replacing the value of X

+= -=

X -= Y The equivalent of X = X - Y: subtract Y from X, replacing the value of

Ajay Raisinghani

[email protected]

9893068644

www.vedisoft.com

Software Consultancy, Development and Training

X *=

X *= Y The equivalent of X = X * Y: multiply Y by X, replacing the value of X

/=

X /= Y The equivalent of X = X / Y: divide X by Y, replacing the value of X

Conditional Operators Conditional Comparison Operator == Equal operator. value1 == value2 Tests whether value1 is the same as value2. !=

Not Equal operator. value1 != value2 Tests whether value1 is different from value2.

<

Less Than operator. value1 < value2 Tests whether value1 is less than value2.

>

Greater Than operator. value1 > value2 Tests whether value1 is greater than value2.

<=

Less Than or Equal To operator. value1 <= value2 Tests whether value1 is less than or equal to value2.

>=

Greater Than or Equal To operator. value1 >= value2 Tests whether value1 is greater than or equal to value2.

Logical Operators Logical Operator &&

Comparison And operator. condition1 && condition2 The condition1 and condition2 tests both must be true for the expression to be evaluated as true.

Ajay Raisinghani

[email protected]

9893068644

www.vedisoft.com

Software Consultancy, Development and Training

||

Or operator. condition1 || condition2 Either the condition1 or condition2 test must be true for the expression to be evaluated as true.

!

Not operator. ! condition The expression result is set to its opposite; a true condition is set to false and a false condition is set to true.

String Operators Operator +

Action Concatenates two string variables or literals

Objects Array Object var array_name = new Array()

Array Methods Method sort()

Description

Sort an array in ascending or descending sequence: array.sort(function(a,b){return

a-b})

-

b-a})

-

descending array.sort(function(a,b){return join(["separator"]) slice(start,end)

splice(start,n) toString()

Ajay Raisinghani

ascending Join elements of array into string separated by separator Return a subset of elements of an array beginning with element start and ending at (but not including) element end. Remove elements from array beginning at element start and including n elements. Convert array to comma-separated string of element

[email protected]

9893068644

www.vedisoft.com

split(["separator"])

Software Consultancy, Development and Training

values. Split a string into separate array elements at the separator character. NumberString "10,13,23,25,36,47,54,75,80,85" MyArray = NumberString.split(",")

=

Image Arrays var array = new Array() array[n] = new Image() array[n].src = "picture.gif"

Date Object var date_variable = new Date()

Date Methods Method getDate()

getMilliseconds()

Description Returns the day of the month. TheDate.getDate() Returns the numeric day of the week (Sunday = 0). TheDate.getDay() Returns the numeric month of the year (0 = January). TheDate.getMonth() Returns the current year. TheDate.getYear() TheDate.getFullYear() Returns the number of milliseconds since January 1, 1970. TheDate.getTime() Returns the military hour of the day. TheDate.getHours() Returns the minute of the hour. TheDate.getMinutes() Returns the seconds of the minute. TheDate.getSeconds() Returns the milliseconds of the second.

Ajay Raisinghani

[email protected]

getDay() getMonth() getYear() getFullYear() getTime() getHours() getMinutes() getSeconds()

9893068644

www.vedisoft.com

Software Consultancy, Development and Training

TheDate.getMilliseconds() Converts the military time to a string. TheDate.toTimeString() toLocaleTimeString() Converts the time to a string. TheDate.toLocaleTimeString() toDateString() Converts the date to an abbreviated string. TheDate.toDateString() toTimeString()

document Object document Properties Property bgColor

Description and Setting The color of the document background (read/write). document.bgColor = "Red"

fgColor

The color of the document text -- foreground color (read/write). document.fgColor = "#000000"

title

The title appearing in the tag of the current document (read-only).<br /> <br /> referrer<br /> <br /> The URL of the document from which the user linked to the current document by clicking an <a href rel="nofollow"> link (read-only).<br /> <br /> lastModified The date on which the current document was last changed (readonly). linkColor The color of text for a link that the user has not yet visited (read/write). document.linkColor="Blue" vlinkColor<br /> <br /> The color of text for a link that the user has already visited (read/write). document.vlinkColor="#008000"<br /> <br /> alinkColor<br /> <br /> The color of text for a link that the user clicks (read/write). document.alinkColor="Orange"<br /> <br /> document.body Properties Property background<br /> <br /> Description and Setting The URL of the background image for the document, if any (read/write).<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> bgProperties Indicates whether the background image for the document is fixed or scrolls with the page content. A scrolling background image is the default and is set by an empty string (document.body.bgProperties=""). topMargin<br /> <br /> The number of pixels of white space at the top of the document (readonly).<br /> <br /> rightMargin The number of pixels of white space on the right of the document (readonly). bottomMargin The number of pixels of white space at the bottom of the document (read-only). leftMargin The number of pixels of white space on the left of the document (readonly). innerText The text (but not the XHTML) on the page (read/write). innerHTML<br /> <br /> The text, including the XHTML, on the page (read/write).<br /> <br /> clientWidth The width in pixels of the viewable area of the document (read-only). clientHeight The height in pixels of the viewable area of the document (read-only). scrollWidth The width in pixels of the scrollable area of the document. Same as clientWidth if no horizontal scroll bar is present (read-only). scrollHeight The height in pixels of the scrollable area of the document. The full height of the document within the window (read-only). scrollLeft The number of pixels by which the document is scrolled horizontally to the left (read/write). scrollTop The number of pixels by which the document is scrolled vertically from the top of the document (read/write).<br /> <br /> document Methods Method Description close() Closes the specified document. open() Opens the specified document. write() Writes to the specified document. document.getElementById("id") Creates an element reference through element id<br /> <br /> Form Object<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> Checkbox Properties and Event Handlers Property length<br /> <br /> Description The number of checkboxes with the same name.<br /> <br /> checked<br /> <br /> A true or false value indicating whether a box is checked.<br /> <br /> status<br /> <br /> A true or false value indicating whether a box is checked.<br /> <br /> value<br /> <br /> The value attribute coded for a checkbox.<br /> <br /> Event Handler onFocus The control gains focus.<br /> <br /> onBlur<br /> <br /> The control loses focus.<br /> <br /> onClick<br /> <br /> The checkbox is clicked.<br /> <br /> Description<br /> <br /> Drop-Down List Methods and Event Handlers Property length<br /> <br /> Description The number of options in the list.<br /> <br /> selectedIndex The index number, beginning with 0, of the selected option.<br /> <br /> options[]<br /> <br /> An array of the options in the list. Used to reference properties associated with the options; e.g., options[1].value or<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> options[2].text.<br /> <br /> selected<br /> <br /> A true or false value indicating whether an option is chosen.<br /> <br /> value<br /> <br /> The value associated with an option. In the absence of a coded value attribute, the text label associated with the option.<br /> <br /> text<br /> <br /> The text label associated with an option.<br /> <br /> Event Handler onFocus The control gains focus.<br /> <br /> Description<br /> <br /> onBlur<br /> <br /> The control loses focus.<br /> <br /> onChange<br /> <br /> A different option from the one currently displayed is chosen.<br /> <br /> Radio Button Properties and Event Handlers Property length<br /> <br /> Description The number of radio buttons with the same name.<br /> <br /> checked<br /> <br /> A true or false value indicating whether a button is checked.<br /> <br /> status<br /> <br /> A true or false value indicating whether a button is checked.<br /> <br /> value<br /> <br /> The value attribute coded for a button. A checked button with no<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> assigned value is given a value of "on".<br /> <br /> Event Handler onFocus The control gains focus.<br /> <br /> onBlur<br /> <br /> The control loses focus.<br /> <br /> onClick<br /> <br /> The button is clicked.<br /> <br /> Description<br /> <br /> Textbox and Textarea Methods and Event Handlers Method blur()<br /> <br /> Removes focus from the field; does not permit text entry in the control.<br /> <br /> focus()<br /> <br /> Assigns focus to the field; places the cursor in the control.<br /> <br /> select()<br /> <br /> Selects, or highlights, the contents of the control.<br /> <br /> Event Handler onBlur<br /> <br /> Description<br /> <br /> Description The field loses focus when the user tabs from or clicks outside the control.<br /> <br /> onFocus<br /> <br /> The field gains focus when the user tabs into or clicks inside the control.<br /> <br /> onChange<br /> <br /> The field loses focus after the contents of the control have changed.<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> Math Object Math Methods Method Math.abs(expression)<br /> <br /> Description Returns the absolute (non-negative) value of a number: Math.abs(-100)<br /> <br /> Math.max(expr1,expr2)<br /> <br /> Returns the greater of two numbers: Math.max(10,20)<br /> <br /> Math.min(expr1,expr2)<br /> <br /> Returns the lesser of two numbers: Math.min(10,20)<br /> <br /> Math.round(expression) Returns a number rounded to nearest integer (.5 rounds up): Math.round(1.25) Math.round(1.50) Math.round(1.75) Math.ceil(expression)<br /> <br /> Returns the next highest integer value above a number: Math.ceil(3.25) Math.ceil(-3.25)<br /> <br /> Math.floor(expression) Returns the next lowest integer value below a number: Math.floor(3.25) Math.floor(-3.25) Math.pow(x,y)<br /> <br /> Returns the y power of x: Math.pow(2,3)<br /> <br /> Math.sqrt(expression)<br /> <br /> Returns the square root of a number: Math.sqrt(144)<br /> <br /> Math.random(expression) Returns a random number between zero and one: Math.random()<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> Navigator (Browser) Object navigator Properties Property appCodeName<br /> <br /> Description and Current Setting The browser's code name.<br /> <br /> appName<br /> <br /> The browser's application name.<br /> <br /> browserLanguage The language used for display. cookieEnabled<br /> <br /> Whether the browser permits reading and writing of cookies.<br /> <br /> cpuClass<br /> <br /> The type of CPU of the computer running the browser.<br /> <br /> platform<br /> <br /> The operating system type running the browser.<br /> <br /> userAgent<br /> <br /> Information about the brower, version, and operating system platform.<br /> <br /> String Object String Properties Property length<br /> <br /> Description Returns the number of characters in a string: TextString.length<br /> <br /> String Formatting Methods Method bold()<br /> <br /> Description<br /> <br /> Changes the text in a string to bold. TextString.bold()<br /> <br /> italics()<br /> <br /> Ajay Raisinghani<br /> <br /> Changes the text in a string to italic.<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> TextString.italics()<br /> <br /> strike()<br /> <br /> Changes the text in a string to strike-through characters. TextString.strike()<br /> <br /> sub()<br /> <br /> Changes the text in a string to subscript. "Subscript" + TextString.sub()<br /> <br /> sup()<br /> <br /> Changes the text in a string to superscript. "Superscript" + TextString.sup()<br /> <br /> toLowerCase()<br /> <br /> Changes the text in a string to lower-case. TextString.toLowerCase()<br /> <br /> toUpperCase()<br /> <br /> Changes the text in a string to upper-case. TextString.toUpperCase()<br /> <br /> fixed()<br /> <br /> Changes the text in a string to fixed (monospace) font. TextString.fixed()<br /> <br /> fontcolor("color") Changes the color of a string using color names or<br /> <br /> hexadecimal values. TextString.fontcolor("blue") TextString.fontcolor("#0000FF")<br /> <br /> fontsize("size")<br /> <br /> Changes the size of a string using font sizes 1 (smallest) - 7 (largest). TextString.fontsize("4")<br /> <br /> link("href")<br /> <br /> Ajay Raisinghani<br /> <br /> Formats a string as a link.<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> TextString.link("page.htm")<br /> <br /> StringProcessing Methods Method charAt(index)<br /> <br /> Description Returns the character at position index in the string. TextString.charAt(0)<br /> <br /> charCodeAt(index)<br /> <br /> Returns the Unicode or ASCII decimal value of the character at position index in the string. TextString.charCodeAt(0)<br /> <br /> indexOf("chars")<br /> <br /> Returns the starting position of substring "chars" in the string. If "chars" does not appear in the string then -1 is returned. TextString.indexOf("text") TextString.indexOf("taxt")<br /> <br /> lastIndexOf("chars")<br /> <br /> Returns the starting position of substring "char" in the string, counting from end of string. If "chars" does not appear in the string then -1 is returned. TextString.lastIndexOf("text") TextString.lastIndexOf("taxt")<br /> <br /> slice(index1[,index2])<br /> <br /> Returns a substring starting at position index1 and ending at (but not including) position index2. If index2 is not supplied, the remainder of the string is returned. TextString.substring(2,6)<br /> <br /> split(delimiter)<br /> <br /> Splits a string into separate substrings which are copied as individual elements into a new array object. The delimiter identifies the separator character for splitting the string but it is not included in the substrings. The array object does not need to be prior declared. MyArray = TextString.split(" ")<br /> <br /> substr(index[,length])<br /> <br /> Returns a substring starting at position index and including length characters. If no length is given, the remaining characters in the string are returned.<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> TextString.substring(7,6) substring(index1,index2) Returns a substring starting at position index1 and ending at (but not including) position index2. TextString.substring(7,13) toString()<br /> <br /> Converts a value to a string. var NumberValue = 10 var StringValue = NumberValue.toString()<br /> <br /> toFixed(n)<br /> <br /> Returns a string containing a number formatted to n decimal digits. var NumberValue = 10.12345 var StringValue = NumberValue.toFixed(2)<br /> <br /> toPrecision(n)<br /> <br /> Returns a string containing a number formatted to n total digits. var NumberValue = 10.12345 var StringValue = NumberValue.toPrecision(5)<br /> <br /> window Object References property window.property self.property top.property parent.property top.frame.property parent.frame.property<br /> <br /> window Properties Property Description and Setting defaultStatus The text to display in the status bar appearing at the bottom of the<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> browser window. length<br /> <br /> The number of frames in the window<br /> <br /> location<br /> <br /> The URL of the document in the window. top.location =<br /> <br /> screenLeft screenTop<br /> <br /> Returns pixel position of the [main] window relative to top-left corner of the screen.<br /> <br /> screen Properties Property availHeight<br /> <br /> Description and Setting The height of the screen in pixels (not including the Task Bar).<br /> <br /> availWidth<br /> <br /> The width of the screen in pixels.<br /> <br /> colorDepth<br /> <br /> Number of bits per pixel used to display.<br /> <br /> fontSmoothingEnabled Whether Smooth Edges for fonts is chosen in the control panel. height<br /> <br /> The height of the screen in pixels (including the Task Bar).<br /> <br /> width<br /> <br /> The width of the screen in pixels.<br /> <br /> window Methods Method alert("string|variable")<br /> <br /> prompt("string","default<br /> <br /> Ajay Raisinghani<br /> <br /> Description Opens an alert message box and displays a text string. alert("Hello there")<br /> <br /> Opens a prompt message box and returns<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> text")<br /> <br /> entered value. Response=prompt("Enter something", "default text")<br /> <br /> confirm("string")<br /> <br /> Opens a confirm message box and returns true or false. Response=confirm("Are you sure?")<br /> <br /> eval("string expression")<br /> <br /> Executes the string expression as a JavaScript statement.<br /> <br /> focus()<br /> <br /> Brings focus to a window. When working with secondary windows (see next page), brings the window to the foreground.<br /> <br /> blur()<br /> <br /> Removes focus from a window. When working with secondary windows (see next page), moves the window to the background.<br /> <br /> open()<br /> <br /> Opens a secondary window.<br /> <br /> close()<br /> <br /> Closes an open window.<br /> <br /> createPopup()<br /> <br /> Opens a popup window.<br /> <br /> moveTo(h,v)<br /> <br /> Moves the window to horizontal and vertical position relative top-left of screen: moveTo(50,50)<br /> <br /> moveBy(h,v)<br /> <br /> Moves the window by + or - horizontal and vertical pixels: moveBy(50,50)<br /> <br /> parseFloat("string")<br /> <br /> Converts string to floating-point value.<br /> <br /> parseInt("string")<br /> <br /> Converts string to integer value.<br /> <br /> resizeTo(h,v)<br /> <br /> Changes the size of the window to horizontal and vertical number of pixels: resizeTo(800,600) resizeTo(1024,768)<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> resizeBy(h,v)<br /> <br /> Changes the size of the window by + or horizontal and vertical pixels: resizeBy(-50,-50)<br /> <br /> print()<br /> <br /> Prints the window or frame. Presents the print dialog box.<br /> <br /> scrollTo(h,v)<br /> <br /> Scrolls the document in the current window or frame to horizontal and vertical pixel postions from top of document: scrollTo(0,50)<br /> <br /> scrollBy(h,v)<br /> <br /> Scrolls the document in the current window or frame by + or - horizontal and vertical pixel from current position: scrollBy(0,-100)<br /> <br /> setTimeout("statement", milliseconds)<br /> <br /> Causes the script to pause for a specified number of milliseconds before executing the statement.<br /> <br /> variable = setInterval ("statement", milliseconds)<br /> <br /> Causes the script to execute the<br /> <br /> clearInterval(variable)<br /> <br /> Clears the interval timer variable.<br /> <br /> statement<br /> <br /> every milliseconds.<br /> <br /> Secondary Windows [variable = ] open("url","window_name","window_settings") variable<br /> <br /> a name assigned to the window for reference from a different window.<br /> <br /> url<br /> <br /> the location of the XHTML document to load into the secondary window.<br /> <br /> window_name<br /> <br /> a name you supply for the window. This name is used to reference the window within <frame> and <a> (anchor) tags. You can code a null value ("") if this reference is not needed.<br /> <br /> window_settings<br /> <br /> characteristics of the window. If you do not include these settings, a standard browser window is created. Otherwise, you can include any of the following parameters, separated by commas and<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> including no blank spaces in the list: toolbar=yes|no - display the browser's toolbar location=yes|no - display the browser's location, or address bar directories=yes|no - display the browser's directory buttons bar status=yes|no - display the browser's status bar menubar=yes|no - display the browser's menu bar scrollbars=yes|no - display necessary window scroll bars resizable=yes|no - permit user to resize the window width=n - horizontal width of the window in pixels height=n - vertical height of the window in pixels fullscreen=yes|no - open the window full screen with no features The set of parameters you choose to code must be enclosed in a single set of quotes and separated by commas: "toolbar=yes,scrollbars=yes,height=400,width=300" If you code any one of these settings, the remaining are considered to be voided and you need to specify any others you wish to use.<br /> <br /> Modal/Modeless Dialog Windows showModalDialog("url"[,arguments][,"window_settings]") showModelessDialog("url"[,arguments][,"window_settings]") url<br /> <br /> location of the XHTML document to load into the modal dialog window.<br /> <br /> arguments<br /> <br /> a string, usually, of values passed to a script on the modal dialog page. The script receives the string as property window.dialogArguments.<br /> <br /> window_settings<br /> <br /> characteristics of the modal dialog window. Properties are set in CSS fashion, property:value, with settings separated by<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> semicolons. The follow properties can be set: dialogWidth:npx - horizontal width of the window in pixels dialogHeight:npx - vertical height of the window in pixels dialogLeft:npx distance of window in pixels from left edge of screen dialogTop:npx - distance of window in pixels from top edge of screen center:yes|no - display window in middle of screen status:yes|no - display window's status bar edge:raised|sunken - style of the window border help:yes|no - display a help icon in titlebar If no properties are provided a default window is displayed.<br /> <br /> Statements Assignment var variable expression<br /> <br /> =<br /> <br /> integer|floating-point|"string"|<br /> <br /> variable|<br /> <br /> Decision Making if Statement if (conditional expression) { ...statements }<br /> <br /> if...else Statement if (conditional expression) { ...statements<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> } else { ...statements }<br /> <br /> if...else if Statement if (conditional expression1) { ...statements } else if (conditional expression2) { ...statements } else if (conditional expression3) { ...statements } ... [ else {...statements} ]<br /> <br /> switch Statement switch (expression) { case "value1": ...statements break<br /> <br /> case "value2": ...statements break case "value3":<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> ...statements break ... [ default: ...statements break ] }<br /> <br /> Iterations for Statement for (initial expression; conditional expression; incremental expression) { ...statements }<br /> <br /> while Statement while (conditional expression) { ...statements<br /> <br /> do while Statement do { ...statements } while (conditional expression)<br /> <br /> break Statement for() { ...<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> www.vedisoft.com<br /> <br /> Software Consultancy, Development and Training<br /> <br /> if (true) { break } }<br /> <br /> continue Statement for() { ... if (false) { continue } }<br /> <br /> Ajay Raisinghani<br /> <br /> ajayraisinghani@gmail.com<br /> <br /> 9893068644<br /> <br /> </div> </div> </div> </div> </div> </div> <div class="row hidden-xs"> <div class="col-md-12"> <h4></h4> <hr /> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-reference_5aff26ae8ead0e0e778b4577.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-reference_5aff26ae8ead0e0e778b4577.jpg" alt="JavaScript Reference" height="200" class="block" /> <h4 class="name-title">JavaScript Reference</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-quick-reference-card-cheat-sheetsorg_59c181491723dd5443aba67e.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-quick-reference-card-cheat-sheetsorg_59c181491723dd5443aba67e.jpg" alt="Javascript Quick Reference Card - Cheat-Sheets.org" height="200" class="block" /> <h4 class="name-title">Javascript Quick Reference Card - Cheat-Sheets.org</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript_59f81abe1723ddaa67441603.html"> <img src="https://p.pdfkul.com/img/300x300/javascript_59f81abe1723ddaa67441603.jpg" alt="Javascript" height="200" class="block" /> <h4 class="name-title">Javascript</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript_59f7e1991723dd7a5904c5f1.html"> <img src="https://p.pdfkul.com/img/300x300/javascript_59f7e1991723dd7a5904c5f1.jpg" alt="Javascript" height="200" class="block" /> <h4 class="name-title">Javascript</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/pdf-book-javascript-easy-javascript-_59e49b9c1723ddb4d24cfc74.html"> <img src="https://p.pdfkul.com/img/300x300/pdf-book-javascript-easy-javascript-_59e49b9c1723ddb4d24cfc74.jpg" alt="[PDF BOOK] JAVASCRIPT: Easy JavaScript ..." height="200" class="block" /> <h4 class="name-title">[PDF BOOK] JAVASCRIPT: Easy JavaScript ...</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/go-quick-reference-go-quick-reference-go-quick-reference-github_59c5fedb1723dd37c9f20146.html"> <img src="https://p.pdfkul.com/img/300x300/go-quick-reference-go-quick-reference-go-quick-ref_59c5fedb1723dd37c9f20146.jpg" alt="Go Quick Reference Go Quick Reference Go Quick Reference - GitHub" height="200" class="block" /> <h4 class="name-title">Go Quick Reference Go Quick Reference Go Quick Reference - GitHub</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-data-exploration-github_59b2a2da1723dd917484ff61.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-data-exploration-github_59b2a2da1723dd917484ff61.jpg" alt="Javascript Data Exploration - GitHub" height="200" class="block" /> <h4 class="name-title">Javascript Data Exploration - GitHub</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-test-runner_59b4f5a81723dd9174850378.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-test-runner_59b4f5a81723dd9174850378.jpg" alt="JavaScript Test Runner" height="200" class="block" /> <h4 class="name-title">JavaScript Test Runner</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-building-dynamic-websites_5a2d1c921723dd654b854e7c.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-building-dynamic-websites_5a2d1c921723dd654b854e7c.jpg" alt="JavaScript - Building Dynamic Websites" height="200" class="block" /> <h4 class="name-title">JavaScript - Building Dynamic Websites</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-gardenpdf_59cce62d1723dd347bfcb596.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-gardenpdf_59cce62d1723dd347bfcb596.jpg" alt="JavaScript Garden.pdf" height="200" class="block" /> <h4 class="name-title">JavaScript Garden.pdf</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-crash-course-github_59b533641723dd917485039f.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-crash-course-github_59b533641723dd917485039f.jpg" alt="JavaScript Crash Course - GitHub" height="200" class="block" /> <h4 class="name-title">JavaScript Crash Course - GitHub</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-building-dynamic-websites_5a2d1c921723dd644b70cbdc.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-building-dynamic-websites_5a2d1c921723dd644b70cbdc.jpg" alt="JavaScript - Building Dynamic Websites" height="200" class="block" /> <h4 class="name-title">JavaScript - Building Dynamic Websites</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-khmerpdf_59c046df1723dddb426a7153.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-khmerpdf_59c046df1723dddb426a7153.jpg" alt="Javascript khmer.pdf" height="200" class="block" /> <h4 class="name-title">Javascript khmer.pdf</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/reference-policies_59e4b8951723ddfc0af8024d.html"> <img src="https://p.pdfkul.com/img/300x300/reference-policies_59e4b8951723ddfc0af8024d.jpg" alt="Reference Policies" height="200" class="block" /> <h4 class="name-title">Reference Policies</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/javascript-gardenpdf_5a19f8ed1723ddfb1ada6e1c.html"> <img src="https://p.pdfkul.com/img/300x300/javascript-gardenpdf_5a19f8ed1723ddfb1ada6e1c.jpg" alt="JavaScript Garden.pdf" height="200" class="block" /> <h4 class="name-title">JavaScript Garden.pdf</h4> </a> </div> </div> </div> <div class="col-lg-3 col-md-4"> <div class="box-product doc"> <div class="doc-meta-thumb name"> <a href="https://p.pdfkul.com/modern-javascript-and-phonegap-github_5acbd7b27f8b9a06368b456d.html"> <img src="https://p.pdfkul.com/img/300x300/modern-javascript-and-phonegap-github_5acbd7b27f8b9a06368b456d.jpg" alt="Modern JavaScript and PhoneGap - GitHub" height="200" class="block" /> <h4 class="name-title">Modern JavaScript and PhoneGap - GitHub</h4> </a> </div> </div> </div> </div> </div> <div class="col-lg-3 col-md-4 col-xs-12"> <div class="panel-meta panel panel-info"> <div class="panel-heading"> <h2 class="text-center panel-title">JavaScript Reference</h2> </div> <div class="panel-body"> <div class="row"> <div class="col-md-12"> <span class="st">fontsize("size") Changes the size of a string using <em>font</em> sizes 1 (smallest). - 7 (<wbr>largest). ... Returns the <em>Unicode</em> or ASCII decimal value of the character at position ...</wbr></span> </div> <div class="col-md-12"> <div class="doc"> <hr /> <div class="download-button" style="margin-right: 3px; margin-bottom: 6px;"> <a href="https://p.pdfkul.com/download/javascript-reference_5b1aa1f37f8b9a47248b4567.html" class="btn btn-success btn-block"><i class="fa fa-cloud-download"></i> Download PDF </a> </div> <div class="share-box pull-left" style="margin-right: 3px;"> <!-- Facebook --> <a href="http://www.facebook.com/sharer.php?u=https://p.pdfkul.com/javascript-reference_5b1aa1f37f8b9a47248b4567.html" target="_blank" class="btn btn-social-icon btn-facebook"> <i class="fa fa-facebook"></i> </a> <!-- Twitter --> <a href="http://www.linkedin.com/shareArticle?mini=true&url=https://p.pdfkul.com/javascript-reference_5b1aa1f37f8b9a47248b4567.html" target="_blank" class="btn btn-social-icon btn-twitter"> <i class="fa fa-twitter"></i> </a> </div> <div class="fb-like pull-left" data-href="https://p.pdfkul.com/javascript-reference_5b1aa1f37f8b9a47248b4567.html" data-layout="button_count" data-action="like" data-size="large" data-show-faces="false" data-share="false"></div> <div class="clearfix"></div> <div class="row"> <div class="col-md-12" style="margin-top: 6px;"> <span class="btn pull-left" style="padding-left: 0;"><i class="fa fa-file-pdf-o"></i> 290KB Sizes</span> <span class="btn pull-left"><i class="fa fa-download"></i> 0 Downloads</span> <span class="btn pull-left" style="padding-right: 0;"><i class="fa fa-eye"></i> 203 Views</span> </div> </div> <div class="clearfix"></div> <div class="row"> <div class="col-md-12"> <span class="btn pull-left" style="padding-left: 0;"><a data-toggle="modal" data-target="#report" style="color: #f44336;"><i class="fa fa-handshake-o"></i> Report</a></span> </div> </div> </div> </div> </div> <h4 id="comment"></h4> <div id="fb-root"></div> <script> (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.9&appId=266776430439748"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <div class="fb-comments" data-href="https://p.pdfkul.com/javascript-reference_5b1aa1f37f8b9a47248b4567.html" data-width="100%" data-numposts="6"></div> </div> </div> <div class="panel-recommend panel panel-success"> <div class="panel-heading"> <h4 class="text-center panel-title">Recommend Documents</h4> </div> <div class="panel-body"> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-reference_5aff26ae8ead0e0e778b4577.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-reference_5aff26ae8ead0e0e778b4577.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-reference_5aff26ae8ead0e0e778b4577.html"> JavaScript Reference </a> <div class="doc-meta"> <div class="doc-desc">can be composed of letters, numerals, or the underscore character. • cannot contain blank ..... Returns the Unicode or ASCII decimal value of the character at ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-quick-reference-card-cheat-sheetsorg_59c181491723dd5443aba67e.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-quick-reference-card-cheat-sheetsorg_59c181491723dd5443aba67e.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-quick-reference-card-cheat-sheetsorg_59c181491723dd5443aba67e.html"> Javascript Quick Reference Card - Cheat-Sheets.org </a> <div class="doc-meta"> <div class="doc-desc">Code Structure var ... //Global variable ... //your code here. }] aName='ExplainThat!'; ..... pathname – the path to the document on the host protocol – the protocol ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript_59f81abe1723ddaa67441603.html"> <img src="https://p.pdfkul.com/img/60x80/javascript_59f81abe1723ddaa67441603.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript_59f81abe1723ddaa67441603.html"> Javascript </a> <div class="doc-meta"> <div class="doc-desc">PHP – dynamically generated web pages. • Javascript – web pages with dynamic content. Page 4. Javascript. • Programming Language used in web design.</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript_59f7e1991723dd7a5904c5f1.html"> <img src="https://p.pdfkul.com/img/60x80/javascript_59f7e1991723dd7a5904c5f1.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript_59f7e1991723dd7a5904c5f1.html"> Javascript </a> <div class="doc-meta"> <div class="doc-desc">Javascript – web pages with dynamic content. Page 4. Javascript. • Programming Language used in web design. • Unlike PHP ... Create 'xhr' object. 2. Construct ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/pdf-book-javascript-easy-javascript-_59e49b9c1723ddb4d24cfc74.html"> <img src="https://p.pdfkul.com/img/60x80/pdf-book-javascript-easy-javascript-_59e49b9c1723ddb4d24cfc74.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/pdf-book-javascript-easy-javascript-_59e49b9c1723ddb4d24cfc74.html"> [PDF BOOK] JAVASCRIPT: Easy JavaScript ... </a> <div class="doc-meta"> <div class="doc-desc">Online PDF JAVASCRIPT: Easy JavaScript Programming For Beginners. Your Step-By-Step Guide to Learning JavaScript Programming (JavaScript Series), ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/go-quick-reference-go-quick-reference-go-quick-reference-github_59c5fedb1723dd37c9f20146.html"> <img src="https://p.pdfkul.com/img/60x80/go-quick-reference-go-quick-reference-go-quick-ref_59c5fedb1723dd37c9f20146.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/go-quick-reference-go-quick-reference-go-quick-reference-github_59c5fedb1723dd37c9f20146.html"> Go Quick Reference Go Quick Reference Go Quick Reference - GitHub </a> <div class="doc-meta"> <div class="doc-desc">Structure - Package package mylib func CallMeFromOutside. Format verbs. Simpler than Cās. MOAR TABLE package anothermain import (. "fmt". ) func main() {.</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-data-exploration-github_59b2a2da1723dd917484ff61.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-data-exploration-github_59b2a2da1723dd917484ff61.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-data-exploration-github_59b2a2da1723dd917484ff61.html"> Javascript Data Exploration - GitHub </a> <div class="doc-meta"> <div class="doc-desc">Apr 20, 2016 - Designers. I'm a sort of. « social data scientist ». Paris. Sciences Po médialab. I just received a CSV. Let me grab my laptop ... Page 9 ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-test-runner_59b4f5a81723dd9174850378.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-test-runner_59b4f5a81723dd9174850378.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-test-runner_59b4f5a81723dd9174850378.html"> JavaScript Test Runner </a> <div class="doc-meta"> <div class="doc-desc">Jun 30, 2013 - 7.2.4 Integration with Browser Providers in the Cloud . .... 1GitHub is a web-based hosting service for software development projects that use ...... meta data about the project under test - about its source files. ...... |--thesis.pdf</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-building-dynamic-websites_5a2d1c921723dd654b854e7c.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-building-dynamic-websites_5a2d1c921723dd654b854e7c.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-building-dynamic-websites_5a2d1c921723dd654b854e7c.html"> JavaScript - Building Dynamic Websites </a> <div class="doc-meta"> <div class="doc-desc">if (document.forms.login.username.value == "") ... document.forms.login.password.focus(); ... 19. Quirks http://www.quirksmode.org/js/contents.html ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-gardenpdf_59cce62d1723dd347bfcb596.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-gardenpdf_59cce62d1723dd347bfcb596.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-gardenpdf_59cce62d1723dd347bfcb596.html"> JavaScript Garden.pdf </a> <div class="doc-meta"> <div class="doc-desc">JavaScript 파서의 잘못된 설계 때문에 구버전(ECMAScript 5 이전 버전)에서는 SystaxError가 발생할 것이다. 위 코드에서 문제가 되는 delete키워드를 따옴표로 ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-crash-course-github_59b533641723dd917485039f.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-crash-course-github_59b533641723dd917485039f.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-crash-course-github_59b533641723dd917485039f.html"> JavaScript Crash Course - GitHub </a> <div class="doc-meta"> <div class="doc-desc">Nov 10, 2016 - 1Info on this slide from: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures ..... Google (you are smart, figure it out).</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-building-dynamic-websites_5a2d1c921723dd644b70cbdc.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-building-dynamic-websites_5a2d1c921723dd644b70cbdc.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-building-dynamic-websites_5a2d1c921723dd644b70cbdc.html"> JavaScript - Building Dynamic Websites </a> <div class="doc-meta"> <div class="doc-desc">put cursor in username field if empty if (document.forms.login.username.value == ""). { document.forms.login.username.focus(); document.forms.login.username.value = document.forms.login.username.value;. } // else put cursor in password field else. { </div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-khmerpdf_59c046df1723dddb426a7153.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-khmerpdf_59c046df1723dddb426a7153.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-khmerpdf_59c046df1723dddb426a7153.html"> Javascript khmer.pdf </a> <div class="doc-meta"> <div class="doc-desc">JavaScript គឺ Script ែដលេធ . រេ3េល Web Browsers ដ ូេច&ះI. តDវនេ¡¢ Client-side. scripting language ផងែដរ។ Dynamic Webpages គឺFន features ...</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/reference-policies_59e4b8951723ddfc0af8024d.html"> <img src="https://p.pdfkul.com/img/60x80/reference-policies_59e4b8951723ddfc0af8024d.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/reference-policies_59e4b8951723ddfc0af8024d.html"> Reference Policies </a> <div class="doc-meta"> <div class="doc-desc">instruction/teaching model of the library and the Information Studies program, members ... Locating books and periodicals in the online catalog ... Paging system.</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/javascript-gardenpdf_5a19f8ed1723ddfb1ada6e1c.html"> <img src="https://p.pdfkul.com/img/60x80/javascript-gardenpdf_5a19f8ed1723ddfb1ada6e1c.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/javascript-gardenpdf_5a19f8ed1723ddfb1ada6e1c.html"> JavaScript Garden.pdf </a> <div class="doc-meta"> <div class="doc-desc">Page 3 of 16. JavaScript Garden.pdf. JavaScript Garden.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying JavaScript Garden.pdf. Page 1 of 16.</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> <div class="row m-0"> <div class="col-md-3 col-xs-3 pl-0 text-center"> <a href="https://p.pdfkul.com/modern-javascript-and-phonegap-github_5acbd7b27f8b9a06368b456d.html"> <img src="https://p.pdfkul.com/img/60x80/modern-javascript-and-phonegap-github_5acbd7b27f8b9a06368b456d.jpg" alt="" width="100%" /> </a> </div> <div class="col-md-9 col-xs-9 p-0"> <a href="https://p.pdfkul.com/modern-javascript-and-phonegap-github_5acbd7b27f8b9a06368b456d.html"> Modern JavaScript and PhoneGap - GitHub </a> <div class="doc-meta"> <div class="doc-desc">ES3 (1999). iOS 3. By Source (WP:NFCC#4), Fair use, https://en.wikipedia.org/w/index.php?curid=49508224 ... Supported by all modern mobile web views. 1. iOS 6+, IE .... Arrow function returns. Single line arrow functions use implicit return: [1, 2, 3</div> </div> </div> <div class="clearfix"></div> <hr class="mt-15 mb-15" /> </div> </div> </div> </div> </div> </div> <div class="modal fade" id="report" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <form role="form" method="post" action="https://p.pdfkul.com/report/5b1aa1f37f8b9a47248b4567" style="border: none;"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">Report JavaScript Reference</h4> </div> <div class="modal-body"> <div class="form-group"> <label>Your name</label> <input type="text" name="name" required="required" class="form-control" /> </div> <div class="form-group"> <label>Email</label> <input type="email" name="email" required="required" class="form-control" /> </div> <div class="form-group"> <label>Reason</label> <select name="reason" required="required" class="form-control"> <option value="">-Select Reason-</option> <option value="pornographic" selected="selected">Pornographic</option> <option value="defamatory">Defamatory</option> <option value="illegal">Illegal/Unlawful</option> <option value="spam">Spam</option> <option value="others">Other Terms Of Service Violation</option> <option value="copyright">File a copyright complaint</option> </select> </div> <div class="form-group"> <label>Description</label> <textarea name="description" required="required" rows="3" class="form-control"></textarea> </div> <div class="form-group"> <div style="display: inline-block;"> <div class="g-recaptcha" data-sitekey="6LeP2DsUAAAAAABvCByMZRCE253cahUVoC_jPUkq"></div> </div> </div> <script src='https://www.google.com/recaptcha/api.js'></script> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="submit" class="btn btn-primary">Save changes</button> </div> </form> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="login" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close" on="tap:login.close"><span aria-hidden="true">×</span></button> <h3 class="modal-title">Sign In</h3> </div> <div class="modal-body"> <form action="https://p.pdfkul.com/login" method="post"> <div class="form-group form-group-lg"> <label class="sr-only" for="email">Email</label> <input class="form-input form-control" type="text" name="email" id="email" value="" placeholder="Email" /> </div> <div class="form-group form-group-lg"> <label class="sr-only" for="password">Password</label> <input class="form-input form-control" type="password" name="password" id="password" value="" placeholder="Password" /> </div> <div class="form-group form-group-lg"> <div class="checkbox"> <label class="form-checkbox"> <input type="checkbox" name="remember" value="1" /> <i class="form-icon"></i> Remember Password </label> <label class="pull-right"><a href="https://p.pdfkul.com/forgot">Forgot Password?</a></label> </div> </div> <button class="btn btn-lg btn-primary btn-block" type="submit">Sign In</button> </form> </div> </div> </div> </div> <!-- Footer --> <div class="footer-container" style="background: #fff;display: block;padding: 10px 0 20px 0;margin-top: 30px;"> <hr /> <div class="footer-container-inner"> <footer id="footer" class="container"> <div class="row"> <!-- Block footer --> <section class="block col-md-4 col-xs-12 col-sm-3" id="block_various_links_footer"> <h4>Information</h4> <ul class="toggle-footer" style=""> <li><a href="https://p.pdfkul.com/about">About Us</a></li> <li><a href="https://p.pdfkul.com/privacy">Privacy Policy</a></li> <li><a href="https://p.pdfkul.com/term">Terms and Service</a></li> <li><a href="https://p.pdfkul.com/copyright">Copyright</a></li> <li><a href="https://p.pdfkul.com/contact">Contact Us</a></li> </ul> </section> <!-- /Block footer --> <section id="social_block" class="col-md-4 col-xs-12 col-sm-3 block"> <h4>Follow us</h4> <ul> <li class="facebook"> <a target="_blank" href="" title="Facebook"> <i class="fa fa-facebook-square fa-2x"></i> <span>Facebook</span> </a> </li> <li class="twitter"> <a target="_blank" href="" title="Twitter"> <i class="fa fa-twitter-square fa-2x"></i> <span>Twitter</span> </a> </li> <li class="google-plus"> <a target="_blank" href="" title="Google Plus"> <i class="fa fa-plus-square fa-2x"></i> <span>Google Plus</span> </a> </li> </ul> </section> <!-- Block Newsletter module--> <div id="newsletter" class="col-md-4 col-xs-12 col-sm-3 block"> <h4>Newsletter</h4> <div class="block_content"> <form action="https://p.pdfkul.com/newsletter" method="post"> <div class="form-group"> <input id="newsletter-input" type="text" name="email" size="18" placeholder="Entrer Email" /> <button type="submit" name="submit_newsletter" class="btn btn-default"> <i class="fa fa-location-arrow"></i> </button> <input type="hidden" name="action" value="0"> </div> </form> </div> </div> <!-- /Block Newsletter module--> </div> <div class="row"> <div class="bottom-footer"> <div class="container"> Copyright © 2024 P.PDFKUL.COM. All rights reserved. </div> </div> </div> </footer> </div> </div> <!-- #footer --> <script> $(function () { $("#document_search").autocomplete({ source: function (request, response) { $.ajax({ url: "https://p.pdfkul.com/suggest", dataType: "json", data: { term: request.term }, success: function (data) { response(data); } }); }, autoFill: true, select: function (event, ui) { $(this).val(ui.item.value); $(this).parents("form").submit(); } }); }); </script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-VPK2MQK127"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-VPK2MQK127'); </script> </body> </html> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>