Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
29 views
Unit I - Basics of JavaScript Programming - ForStudents
Notes of css
Uploaded by
Tejaswini Nikam
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Unit I - Basics of JavaScript Programming_ForStude... For Later
Download
Save
Save Unit I - Basics of JavaScript Programming_ForStude... For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
29 views
Unit I - Basics of JavaScript Programming - ForStudents
Notes of css
Uploaded by
Tejaswini Nikam
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Unit I - Basics of JavaScript Programming_ForStude... For Later
Carousel Previous
Carousel Next
Save
Save Unit I - Basics of JavaScript Programming_ForStude... For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 26
Search
Fullscreen
Basies of JavaScript Programming Unit-1 Basics of JavaScript Programming Q. What is JavaScript? a) JavaScript is an object-based scripting language. b) JavaScript makes a web page more interactive. ©) Itallows you to implement dynamic features on web pages. 4) JavaScript can update and change both HTML and CSS. e) JavaScript can calculate, manipulate and validate data. 1.1 Features of JavaScrip' Q. List features of Java script. Answer: 1) JavaScript is an object-based scripting language. 2). Giving the user more control over the browser. 3) It Handling dates and time. 4) Itdetecting the user's browser and OS. 5) Itis light weighted. 6) Client-Side Technology. 7) JavaScript is a scripting language and it is not java 8) JavaScript is interpreter based scripting language. 9) JavaScript is case sensitive 10) JavaScript is object based language as it provides predefined objects. 11) Every statement in JavaScript must be terminated with semicolon, 12) Most of the JavaScript control statements syntax is same as syntax of control statements in C language. 13)An important part of JavaScript is the ability to create new fun Declare a function in JavaScript using function keyword. ions within scripts. Q. Explain features of Java script. 1) Client-Side Technology: JavaScript is a client-side technology. It is mainly used for giving client-side validation. It is an object-based scripting language. 2) Greater Control: It gives the user more control over the browser. Example — You can change the background color of the page as well as text on the browser's status bar. Here, the back button is implemented with JavaScript. Click it and you will return to the page from which you have arrived. 3) Detecting the User’s Browser and OS: The feature to detect the users browser and OS enables your script to perform platform-dependent operations. 4) Browser support: To access flash content, you need to install a flash plugin in your browser. But to use JavaScript, you don't have to use any plu; browsers have accepted JavaScript as a scripting language for them and provide integrated support for it. All you need to do is to handle some of the tasks that are in at all. This is because allBasies of JavaScript Programming dependent on the DOM (Document Object Model) of different browsers properly. 5) Performing Simple Calculation on the Client side: Using a JavaScript calculator, we perform simple calculations on the client side. 6) Validating The User’s Input: In the JavaScript calculator, try to type some lette ad of numeric input, you will get an error: Invalid input character. Note that JavaScript helps the brows server access. If the user makes a mistake in the input, the user will get an error message immediately. If the input information is validated only on the server, then the user would have to wait for the server's response. 7) Handling Date and time: The Date object is a built-in object in JavaScript that stores the date and time. It provides a number of built-in methods for formatting and managing that data. + perform output validation without wasting the user’s time by the web 1.2 Object Name, Property, method, Dot Syntax, Main event Object Name: 1) JavaScript is an object based scripting language. 2) It allows us to define our own objects and make our own variable types. 3) It also offers a set of predefined objects. 4) The tables, forms, buttons, images, or links on our web page are examples of objects. 5) The values associated with objects are properties and the actions that can perform on objects are methods or behavior. 6) Property associated to an object can be accessed as follows: Example for object and property using dot (.) Syntax: ObjectName.PropertyName Example: documentaitle; In the above example “document” is an object name accessing property of document “title” with “.” (Dot syntax) Property: 1) Properties are the values associated with a JavaScript object. 2). A JavaScript object is a collection of properties. 3) Properties can usually be changed, added, and deleted, but some are read only. 4) List of Some of the common properties of the document object are: a) Title - returns/ sets the title of the current document. ) Forms - retums a list of the FORM elements within the current document. ) Images - returns a list of the images in the current document 4) URL- returns a string containing the URL of the current document €) Location - to load another URL in the current document window. Syntax: ObjectName.PropertyName Example: document.title; In the above example “document” is an obj “(Dot syntax) name accessing property of document “title” withBasies of JavaScript Programming Dot Syntax: 1) For accessing properties and methods of an object we can use dot (.) operator. Syntax: ‘ObjectName.PropertyName or ObjectName.MethodName ‘Example: document.title: or document.write); In the above example “document” is an object name accessing property “title” and method “write” with “.” dot operator. Method: 1) Method is a function or a process associated with each object, 2) JavaScript methods are actions that can be performed on objects. 3) List of some methods and its purposes: a) open() - Opens a document for writing b) write() - Writes string/data to a document ©) writeln() - Writes string/data followed by a newline character to a document 4) close() - Closes a document stream for writing. ‘Syntax: ObjectName.MethodName Example: document.write();
My Page Titles/title> <Inead> <body> <script var x = document.title; document.write("The title of this HTML document is </script> </body> s/html> Output: The title of this HTML document is: My Page Title <b>" + x + "</b>"; ‘Main Event: 1) JavaScripts interaction with HTML or the browser manipulates a page. 2) When the page loads, it is called an event. 3) When the user clicks a button, that click too is an event. 4) Other examples include events like pressing any key, closing a window, resizing a window, etc. handled through events that occur when the userBasies of JavaScript Programming 1.3 Values and Variables: Variables: 1) A variable is an identifier that can store values. 2) A JavaScript variable can hold a value of any data type. 3) These values can be changed during the execution of the script. 4) Once a value is stored in a variable it can be accessed using the variable name. 5) Variable declaration is not compulsory, though it is a good practice to use variable declaration 6) Generally keyword var is used to declare a variable. 7) 4 Ways to Declare a JavaScript Variable: © Using var Using const * Using nothing 8) Always declare JavaScript variables with var, let, or const. is used in all JavaScript code from 1995 to 2015. 10) The let and const keywords were added to JavaScript in 2015. 11) If you want your code to run in older browser, you must use var. 9) The var keywor 12) If you think the value of the variable can’t change, use const. Syntax: var variable_name; var variable_name = value; let variable_name: const variable_name; Example: var x =5; let const pi=3.14; x=5; Values: In JavaScript, there are six primitive data types: Boolean, Number, String, Null, Object, and Function 1) Boolean * A Boolean represents only one of two values: true, or false. 2) Number: + There is only one type of Number in JavaScript. * Numbers can be written with or without a decimal point Example:Basies of JavaScript Programming var a=5; var b=2.5; 3) String: ‘© Strings are used for storing text. ‘* String is collection of characters. ‘© Strings must be inside of either double or single quotes. ‘In JavaScript, Strings contains numbers also. Example: Null has one value: null, * Ibis explicitly nothing Example: var nothing = null; 5) Object: The object is a complex data type that allows you to store collections of data. © An object contains properties, defined as a key-value pair. Example: Form object is an object upon which some components such as button, checkbox etc. can be placed and used, 6) Function: ‘© The function is a callable object that executes a block of code. * Since functions” are objects, so it is possible to assign them to variables, as shown in the example below: Example: var message = function() { return "Hello World!’ } Keywords: abstract arguments await boolean break byte case catch char const continue | debugger default delete do double else enum eval export extends false finalBasies of JavaScript Programming float for function goto if implements | import in instanceof int interface let long native new null package private protected public return short static super switch throw this throws ansient true uy typeof var void volatile yield 1.4 Operators and Expres Operators: Following types of operators in JavaScript: 1) Arithmetic Operators 2) Comparison (Relational) Operators 3) Bitwise Operators 4) Logical Operators 5) Assignment Operators 6) Special Operators 1) Arithmetic Operators: Arithmetic operators are used to perform arithmetic operations on the operands. The following operators are known as JavaScript arithmetic operators. Operator | Description Example + Addition a=10, b=20; c= a+b; c=30 - Subtraction a=50, b=20; * Multiplication a=10, b=20; c= a * b; c=200 1 Division 100, b=20; c= a/b : Modulus en % (Remainder) a=10,b=2; c= a % b; c=0 + Increment var a=10; a+; Now a= II - Decrement var a=10; a--; Now a=92) Comparison (Relational) Operators Basies of JavaScript Programming ‘The JavaScript comparison operator compares the two operands. The comparison operators are as follows: Operator | Deseri ion Example == | fsequalto ; false Tdentical (equal and of same type) 1= | Notequal to 10!=20; true Not Identical 0; false > Greater than 20>10; true Greater than or equal to 20>=10; true Less than 20<10; false <= Less than or equal to 20<=10; false 3) Bitwise Operators follows: The bitwise operators perform bitwise operations on operands. The bitwise operators are as Operator | Description Example & Bitwise AND :20 | 20= =33) = 0 Bitwise OR OR 0 | 20= =33) * Bitwise XOR (10= =20 * 20= =33) = 0 boa Bitwise NOT (~10) =-11 << Bitwise Left Shift (10<<2) = 40 > Bitwise Right Shift (0>>2) >>> Bitwise Right Shift with Zero (10>>>2)=2Basies of JavaScript Programming 4) Logical Operators The following operators are known as JavaScript logical operators. Logical operators are used to determine the logic between variables or values. Operator Description Example (10= =20 && 20= =33) = false && Logical AND i Logical OR ! Logical Not 1(10==20) = true 5) Assignment Operators Operator | Description Example = Assign 8210, b=20; c= a+b; + ‘Add and assign a=10; a+=20; Now a= 30 = Subtract and assign 2220; a-=10; Now a= 10 * Multiply and ass a=10; a*=20; Now a= 200 I Divide and assign 0; a/=2; Now a= 5 Modulus and assign a=10; a%=2; Now a=0 ©) Special Operators The following operators are known as JavaScript special operators. Operator Description (2). | Conditional Operator returns value based on the condition, It is like if-else : Comma Operator allows multiple expressions to be evaluated as single statement, delete | Delete Operator deletes a property from the object.Basies of JavaScript Programming in In Operator checks if object has the given property instanceof | checks if the object is an instance of given type new creates an instance (object) typeof | Checks the type of object. void It discards the expression's return value. yield | Checks what is returned in a generator by the generators iterator. Expressions: 1) An expression is a unit of code that a JavaS produce a value. 2) There are simple expressions like literal values and complexes which are built from simpler ones usually using operators. Primary Expressions: 1) Primary expressions refer to stand alone expressions such as literal values, certain keywords and variable values. 2) The simplest expressions, known as primary expressions, are those that stand alone, 3) They do not include any simpler expressions. ‘pt interpreter can parse and compute to Example: 1.23 // A number literal “hello” — ///A string literal Ipattern/ // A regular expression literal Object and Array initializers: Object initializers: 1) Object initializers are expressions whose value is a newly created object. 2) These initializer expressions are sometimes called “object literals”. 3) Unlike true literals, however, they are not primary expressions, because they include a number of sub expressions that specify property and element values. Syntax: var object_name = Exampl var p= { x: 2.3, y:-1.2 }; // An object with 2 properties var q= (5 1/ An empty object with no properties property:valuel, property:value2,...., property:valueN }; Array initializer 1) An array initializer is a comma-separated list of expressions contained within squareBasies of JavaScript Programming brackets. 2) The value of an array initializer is a newly created array. Example: Syntax: const array_name = [item 1, item2, .., elementN]; var array_name = new Array(elementl, element2, ..., element); Example: var arr = [1, var array_nam 3); new Array("CSS", "AJP", "STE"); Function definition expression: 1) A JavaScript function can also be defined using an expression, 2) A function expression can be stored in a variable: var x = function (a, b) { return a * b } 3) After a function expression has been stored in a variable, the variable can be used as a function. Example: var sum = funetion (x, y) ( return x + y; } var z= sum (3,4); 7 Property access expressions: 1) A property access expression evaluates to the value of an object property or an array element. 2) JavaScript defines two syntaxes for property access: expression,identifier expression [expression] 3) The first style of property access is an expression followed by a period and an identifier. 4) The expression specifies the object, and the identifier specifies the name of the desired property. 5) The second style of property access follows the first expression (the object or array) with another expression in square brackets. Example: var obj = {x:1, y:2}; obj.x // 1 objf'y]/2 var arr = (2, 3} arr{ 1] 73 10Basies of JavaScript Programming Invocation expressions: 1) An invocation expression is JavaScript’s syntax for calling (or execut method 2) It starts with a function expression that identifies the function to be called. 3) The function expres followed by an open parenthesis, a comma-separated list of zero of more argument expressions, and a close parenthe: Example: fun (arg); display); 1g) a function or 1.5 If Statement, if...else, if...else if, nested if statement: If statement: © It evaluates the content only if the expression is true. The syntax of JavaScript if statement is given below. Syntax: if(expression) { Heontent to be evaluated } Flowchart of JavaScript If statement: True False Body of it Example: <HTML> <HEAD> <TITLE>Example of if Statements/TITLE> </HEAD> <BODY> 4Basics of JavaScript Programming <Seript> var a=20; iffa>10) { document. write("value of a is greater than 10"); } </Scrip> </BODY> </HTML> If...else Statement: It evaluates the content whether the conditi if-else statement is given below. Syntax: n is true or false. The syntax of JavaScript ifexpression) { Heontent to be evaluated if condition is true } else { JIcontent to be evaluated if condition is false Flowchart of JavaScript If statement: False Body of if Body of else Example: <HTML> <HEAD> <TITLE>Example of i Ise Statement
12Basics of JavaScript Programming 1.6 Switch Statement: 1) The JavaScript switch statement is used to execute one code from multiple expressions. 2) It is just like if.else..if statement, but it is more convenient than if..else..if becau be used with numbers, characters etc. can 3) Working of switch case statement: a) The switch expression is evaluated once. b) The value of the expression is compared with the values of each case. ©) I there is a match, the associated block of code is executed. d) If there isno match, the default code block is executed. Syntax: switch(expression) ( case valuel: Mode to be executed; break; case value2: Hcode to be executed; break; default: Hcode to be executed if above values are not matched; } 15Basies of JavaScript Programming Exampl
Example of switch case Statements/TITLE> </HEAD> <BODY> <script var grad var result; switch(grade) ( case ' result break; case" ‘A Grade"; document.write(result); <iscript> </BODY> </HTML> Output: B Grade 1.7 Loops in JavaScript: 1) The JavaScript loops are used to iterate the piece of code using for, while, do while or for-in loops. 2) It makes the code compact. It is mostly used in arrays. ‘There are four types of loops in JavaScript 1) for loop 2) while loop 3) do-while loop 4) for-in loop 16Basies of JavaScript Programming JavaScript For loop: 1) The JavaScript for loop iterates the elements for the fixed number of times. 2) It should be used if the number of iterations is known. 3) The syntax of for loop is given below. Syntax: for (initialization; condition; increment) { Hecode to be executed Example: <HTML> <HEAD> <TITLE>Example of for loops/TITLE> </HEAD> <BODY> <script document.write("| to 5 numbers printing using for loop:<br>"); for (i=1; 1<=5; i++) i document.write(i +!"<br/>") 1 </script> </BODY> </HTML> Output: @ Example of for oop € > @ O File| CyZambareds/css%.. @ x Ol A ¢ 1 to 5 numbers printing using for loop: JavaScript while loop: 1) The JavaScript while loop iterates the elements for an infinite number of times. 7Basies of JavaScript Programming 2) It should be used if the number of iterations is not known, 3) The syntax of the while loop is given below. Synta: while (condition) { code to be executed Exampl <HTML> <HEAD> <TITLE>Example of while loop
Output: € > © O fie| C/ZambareDsycss%.. 1@ x Of A JavaScript do while loop: 1) The JavaScript do-while loop iterates the elements for an infinite number of times like a while loop. 2) But, code is executed at least once whether the condition is true or false. 3) The syntax of do while loop is given below. 18Basies of JavaScript Programming do { Weode to be executed } while (condition); Example:
Example of do while loops/TITLE> </HEAD> <BODY> <script document..write("I to 5 numbers printing using do while loop:<br>"); var i=! do ( document.write + "<br>"); ints }while (i<=5); siscript™ <BODY> </HTML> Example of do while loop € > S O file| CyZambareaycss%.. 1 ty Ol O® Output: to 5 numbers printing using do while loop. Vane JavaScript for in loop: 1) The JavaScript for in loop is used to iterate the properties of an object. Syntax: for(variable in object) { Ilcode to be executed } 19Basies of JavaScript Programming oR for (key in object) { I/ code block to be executed } <HTML> <HEAD> <TITLE>Example of for in loops/TITLE> </HEAD> <BODY> <script document.write("for in loop example:<br>"); const person = {fname:"Dattatray”, Iname:"Zambare", age:33}; Tet text =" for (let x in person) t text += person[x]+ "<br>"; } document.write(text); </script> </BODY> </HTML> € > © O Fite| C/Zambaredaycss%.. 12 x Th AX: Output: for in loop example Dattatray Zambare 33 Continue statement: 1) The continue statement breaks one iteration (in the loop) if a specified condition occurs, and continues with the next iteration in the loop. Example: <HTML> <HEAD> <TITLE> Example of continue statements/TITLE> 20Basies of JavaScript Programming </HEAD> <BODY> <seript> var text = document.write("A loop which will skip the step where i=3 <br>" for (let { if ( t continue; } text += "The number is "+ i+ "<br>"; } document.write(text); yi <= 10; 44) 3) </script> </BODY> </HTML> Output: @ Example cf continue statement x € > © O Fie | cyZambareds/css%20Pr.. @ xe Oy FA A loop which will skip the step where i=! ‘The number is 0 ‘The number is 1 ‘The number is 2 ‘The number is 4 ‘The number is 5 The number is 6 The number is 7 The number is 8 The number is 9 The number is 10 1.8 Querying and setting properties and deleting properties: Property Attributes: 1) All properties have a name. aBasies of JavaScript Programming 2) In addition they also have a value. 3). The value is one of the property's attributes. Adding New Properties: 1) You can add new properties to an existing object by simply giving it a value. 2) Assume that the person object already exists - you can then give it new properties: Example: person.nationality = "Indian"; Deleting Properties: 1) The delete keyword deletes a property from an object: Example var person= firstName:"Dattatray”, lastName:"Zambare" age:33, eyeColor:"black" delete person.age; or delete personf"age"]; 2) The delete keyword deletes both the value of the property and the property itself. After deletion, the property cannot be used before it is added back again. 3) The delete operator is designed to be used on object properties. It has no effect on variables or functions. 4) The delete operator should not be used on predefined JavaScript object properties. It can crash your application. Q. Write a Java script to create person object with properties firstname, lastname, age, eyecolor, delete eyecolor property and display remaining properties of person object. Answer: <huml> <body> <script var person firstname:"John", lastname:"Doe", age:50, eyecolor:"blue" h delete person.cyecolor; //delete person eyecolor documentwrite("After delete "+ person.firstname +" +person.age +" "+ person.eyecolor); “+ person.lastname + 22Basics of JavaScript Programming, </script> <fbody> </html> Output: € > G O Fite| CyZambareDe/cssx20Pr.. 2 x I AA? After delete John Doe 50 undefined Property getters and sette 1) The accessor properties. They are essentially functions that work on getting and setting a value. 2) Accessor properties are represented by “getter” and “setter” methods. In an object literal they are denoted by get and set. let obj = { get propName() { U1 getter, the code executed on getting obj.propName } set propName(value) { 1/ setter, the code executed on setting obj,propName } k 3) An object property is a name, a value and a set of attributes. The value may be replaced by one or two methods, known as setter and a getter. 4) When program queries the value of an accessor property, Javascript invoke getter method (passing no arguments). The return value of this method becomes the value of the property access expression. 5) When program sets the value of an accessor property. Javascript invoke the setter method, passing the value of right-hand side of assignment. This method is responsible for setting 23Basies of JavaScript Programming the property value. If property has both getter and a setter method, it is read/write property. If property has only a getter method it is read-only property. If property has only a setter method , itis a write-only property. 6) getter works when obj.propName is read, the setter ~ when it is assigned, Example: <html> <head> Stitle> property getters and setterss/title> <body> <script language="Javascript"> var myCar = { /* Data properties */ defColor: "blue", defMake: "Toyota", /* Accessor properties (getters) */ get color() { return this.defColor; 1 get make() { return this.defMake; in /* Accessor properties (setters) */ set color(newColor) { this.defColor = newColor, 1 set make(newMake) { this.defMake = newMake; } Ab document. write("Car color." + myCar.color +" Car Make: "+myCar.make) /* Calling the setter accessor properties */ myCar.color = "red"; myCar.make = "Audi"; /* Checking the new values with the getter access document write("<p>Car color:” + myCar.color document.write(" Car Make: "+myCar.make); //Audi </script> </head> </body> </html> 24Basics of JavaScript Programming Output: € > |S O File | Cyzambaredeycss%20Pr.. 1 wr Ch A® : Car color:blue Car Make: Toyota Car color:red Car Make: Audi Q. Explain prompt() and confirm() method of Java seript with syntax and example. Answer: prompt(): 1) The prompt () method displays a dialog box that prompts the visitor for input 2) The prompt () method returns the input value if the user clicks "OK". If the user clicks "cancel" the method returns null. Syntay window.prompt (text, defaultText) Example: hum <script type="text/javascript"> function msg0{ var v= prompt("Who are you?"); alert("T am "+v); } </script> <input type="button” value="click” onclick="msg()"/> </html> confirm(): 1) It displays the confirm dialog box. It has message with ok and cancel buttons. 2) Returns Boolean indicating which button was pressed Synta low.confirm("'sometext"); Example : <himi> <script type="tex/javaseript"> function msg(){ var v= confirm(""Are u sure?"); 25alert(): Idi Syntax: Examph iffv==true)( alert("ok"); ) else{ alert("cancel"); ) ) </script> <input type="button” val </huml> plays the alert dialog box. It has message with ok button. indow.alert("some alert text"); <humi> <script type="text/javaseript"> window.alert("Do you want to Continue!") </script> </html> aks ‘delete record” onclick= Basies of JavaScript Programming "msg()"/> 26</div><section class="_1A5SlX"><div class="_13Fwm2"><div class="J21xEw" data-e2e="recommender-list"><h2 class="_2zE7Q5" data-e2e="list-title">You might also like</h2><ul class="_1LVQoI" data-e2e="list-content-wrapper"><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/261802634/Java-Script-in-Mirth" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script in Mirth</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/261802634/149x198/b57f4f10c8/1428991663?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/261802634/298x396/38b7ead67d/1428991663?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Java Script in Mirth</div><div class="_3UuYwh zs8qzW">39 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/769435129/Unit-I-Basics-of-JavaScript-Programming" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit I - Basics of JavaScript Programming.</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/769435129/149x198/5ec18c0814/1726417049?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/769435129/298x396/8c8d46e219/1726417049?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit I - Basics of JavaScript Programming.</div><div class="_3UuYwh zs8qzW">27 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/853923681/JS-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JS 1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/853923681/149x198/64dc18597c/1745592744?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/853923681/298x396/c2fc35fa83/1745592744?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">JS 1</div><div class="_3UuYwh zs8qzW">58 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/747255157/CSS-chapter-1-overall" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CSS Chapter 1 Overall</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/747255157/149x198/f512a776a6/1719917079?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/747255157/298x396/48b9ebc587/1719917079?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">CSS Chapter 1 Overall</div><div class="_3UuYwh zs8qzW">26 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/800882943/msbte-campus-css-unit-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">msbte campus css unit 1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/800882943/149x198/888f8cbbe0/1733366804?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/800882943/298x396/43fbd1a7c1/1733366804?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">msbte campus css unit 1</div><div class="_3UuYwh zs8qzW">19 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/546022830/js11-docx" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-Iv/ Chapter - Xi Learning Javascript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/546022830/149x198/cab3cc9a9b/1710543099?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/546022830/298x396/2a77ba8c9e/1710543099?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit-Iv/ Chapter - Xi Learning Javascript</div><div class="_3UuYwh zs8qzW">24 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/851808624/BE-5-IT-GECBVN-BharatVainsh-Unit-5-JavaScript-WD-3151606-2023" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">BE 5 IT GECBVN BharatVainsh Unit 5(JavaScript) WD 3151606 2023</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/851808624/149x198/6538e2d6e7/1745134075?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/851808624/298x396/8dc9b9ee3c/1745134075?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">BE 5 IT GECBVN BharatVainsh Unit 5(JavaScript) WD 3151606 2023</div><div class="_3UuYwh zs8qzW">98 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/758373705/Unit-I-Basics-of-Java-Script-Programming" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit I Basics of Java Script Programming</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/758373705/149x198/fd0beeeaca/1723483396?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/758373705/298x396/6a73e4af83/1723483396?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit I Basics of Java Script Programming</div><div class="_3UuYwh zs8qzW">67 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/772481160/Javascript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/772481160/149x198/6221ab02b7/1727176951?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/772481160/298x396/417d125943/1727176951?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript</div><div class="_3UuYwh zs8qzW">9 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/809796007/Js-Ppt-converted-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Js Ppt-converted (1)</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/809796007/149x198/da596a0e4f/1735536307?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/809796007/298x396/982cbb7772/1735536307?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Js Ppt-converted (1)</div><div class="_3UuYwh zs8qzW">29 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/414159522/Cs101-Lec21" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CS101 Introduction To Computing: (Web Development Lecture 7)</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/414159522/149x198/42ce4922dd/1561200338?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/414159522/298x396/9b4eceaf75/1561200338?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">CS101 Introduction To Computing: (Web Development Lecture 7)</div><div class="_3UuYwh zs8qzW">58 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/342682379/Javascript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/342682379/149x198/77a9031934/1490180225?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/342682379/298x396/7faeb0514b/1490180225?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript</div><div class="_3UuYwh zs8qzW">26 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/517499225/JAVASCRIPT-INTRODUCTION-NOTES" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Introduction Notes</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/517499225/149x198/0d834324db/1741121324?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/517499225/298x396/9a1e4d4968/1741121324?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2x9K4q"><span class="Icon-module_wrapper_LUeQrI _3BAw53"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.18 14.055a2 2 0 0 1-1.857 1.257H4.498a3.11 3.11 0 0 1-1.39-.328A3.812 3.812 0 0 1 1 11.574V5.312h3.382l2.103-3.206a2 2 0 0 1 3.203-.52l.433.433A3 3 0 0 1 11 4.14v1.172h2a3 3 0 0 1 3 3v.037c0 .763-.146 1.52-.43 2.228l-1.39 3.478Zm-9.682-.743h7.148a1 1 0 0 0 .928-.629l1.14-2.848A4 4 0 0 0 14 8.349v-.037a1 1 0 0 0-1-1H9V4.14a1 1 0 0 0-.293-.707L8.274 3 6.17 6.206a2 2 0 0 1-1.789 1.106H3v4.262c0 .686.388 1.314 1.002 1.62.154.078.324.118.496.118Z" fill="currentColor"></path></svg><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal"></span></span><div>100% (1)</div></div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript Introduction Notes</div><div class="_3UuYwh zs8qzW">12 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/482317883/UI-UX-presentation6" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">UI/UX Presentation6</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/482317883/149x198/1f6b15d9f0/1710563168?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/482317883/298x396/11a48a05b3/1710563168?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">UI/UX Presentation6</div><div class="_3UuYwh zs8qzW">39 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/746030433/Website-JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Website JavaScript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/746030433/149x198/aee6130250/1719530562?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/746030433/298x396/784a0ead12/1719530562?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Website JavaScript</div><div class="_3UuYwh zs8qzW">50 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/712966631/JavaScript-Document" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JavaScript Document</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/712966631/149x198/c65fb9a9b3/1710313969?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/712966631/298x396/71df6f86ce/1710313969?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">JavaScript Document</div><div class="_3UuYwh zs8qzW">23 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/694817687/Introduction-to-JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To JavaScript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/694817687/149x198/873b38d643/1703577884?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/694817687/298x396/8f3eec768b/1703577884?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Introduction To JavaScript</div><div class="_3UuYwh zs8qzW">37 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/831757988/Javascript-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript-1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/831757988/149x198/a21c67e6af/1740333880?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/831757988/298x396/4d75393c76/1740333880?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript-1</div><div class="_3UuYwh zs8qzW">71 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/473590298/06-JavaScript-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Web Engineering Javascript (Part 1) : Muhammad Umair Naru Department of Computer Science</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/473590298/149x198/749f1795fa/1710545944?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/473590298/298x396/2b034146e7/1710545944?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Web Engineering Javascript (Part 1) : Muhammad Umair Naru Department of Computer Science</div><div class="_3UuYwh zs8qzW">24 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/788348031/Javascript-Mod3" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Mod3</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/788348031/149x198/9fbd4a3063/1730819768?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/788348031/298x396/e9ad2311d7/1730819768?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript Mod3</div><div class="_3UuYwh zs8qzW">199 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/691878065/JavaScript-Unit-3-Part-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JavaScript (Unit-3) Part 1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/691878065/149x198/765b0f57fc/1702391968?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/691878065/298x396/376c327383/1702391968?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">JavaScript (Unit-3) Part 1</div><div class="_3UuYwh zs8qzW">92 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/434139112/JAVASCRIPT" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">X, Y, Z X Y Z X + Y : 1. What Is Javascript?Features of Javascript, What Is Javascript Syntax?</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/434139112/149x198/987c6b032c/1573311023?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/434139112/298x396/1dbd290ab7/1573311023?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">X, Y, Z X Y Z X + Y : 1. What Is Javascript?Features of Javascript, What Is Javascript Syntax?</div><div class="_3UuYwh zs8qzW">15 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/845818953/JAVASCRIPT-MODULE-4-full" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JAVASCRIPT-MODULE 4 full</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/845818953/149x198/1f14b9718d/1743674023?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/845818953/298x396/bb2e21d057/1743674023?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">JAVASCRIPT-MODULE 4 full</div><div class="_3UuYwh zs8qzW">51 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/848282879/JavaScript-ppt" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JavaScript ppt</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/848282879/149x198/89a5644a26/1744262714?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/848282879/298x396/c8e0404f52/1744262714?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">JavaScript ppt</div><div class="_3UuYwh zs8qzW">123 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/727968048/Unit-I-PPT-CSS-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit I PPT CSS 1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/727968048/149x198/b5b4bc72fc/1714459483?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/727968048/298x396/7e0b24c58d/1714459483?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit I PPT CSS 1</div><div class="_3UuYwh zs8qzW">31 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/685362394/Unit-1-Basics-Of-JavaScript-Programming" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-1 Basics of JavaScript Programming</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/685362394/149x198/e3cba53642/1710522848?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/685362394/298x396/bb77dacf87/1710522848?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit-1 Basics of JavaScript Programming</div><div class="_3UuYwh zs8qzW">58 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/698300749/javascript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/698300749/149x198/88c217b2d0/1710548228?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/698300749/298x396/9f2718d891/1710548228?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript</div><div class="_3UuYwh zs8qzW">19 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/821575709/Module2-Javascript-ppt" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Module2 Javascript.ppt</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/821575709/149x198/caca872efa/1738168190?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/821575709/298x396/336ca740d0/1738168190?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Module2 Javascript.ppt</div><div class="_3UuYwh zs8qzW">88 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/753898698/1-JS-Intro-opr-dt-var-unit-3-Copy" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">1 JS Intro Opr DT Var (Unit 3)</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/753898698/149x198/7423bb5248/1722100529?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/753898698/298x396/a4edde855e/1722100529?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">1 JS Intro Opr DT Var (Unit 3)</div><div class="_3UuYwh zs8qzW">21 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/847926250/Unit-5-JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 5 JavaScript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/847926250/149x198/986b39b137/1744191974?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/847926250/298x396/8186c8e8ee/1744191974?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit 5 JavaScript</div><div class="_3UuYwh zs8qzW">40 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/838971253/Session1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Session1</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/838971253/149x198/13097c886a/1741904611?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/838971253/298x396/f640b5d0bd/1741904611?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Session1</div><div class="_3UuYwh zs8qzW">28 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/793131024/CSS-Unit-1-6" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CSS Unit 1-6</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/793131024/149x198/ddbb4d22c5/1731786333?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/793131024/298x396/0b7668ec1b/1731786333?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">CSS Unit 1-6</div><div class="_3UuYwh zs8qzW">68 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/810114140/Week-3" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Week 3</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/810114140/149x198/88f525b874/1735620399?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/810114140/298x396/eaf505f536/1735620399?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Week 3</div><div class="_3UuYwh zs8qzW">55 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/783210993/Unit-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 2</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/783210993/149x198/157d7f7530/1729653492?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/783210993/298x396/fcdceb171d/1729653492?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit 2</div><div class="_3UuYwh zs8qzW">78 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/847934867/CIM-322-Topic-2-JavaScript-Fundamentals" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CIM 322 Topic 2 JavaScript Fundamentals</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/847934867/149x198/b81835112d/1744193971?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/847934867/298x396/f832907d60/1744193971?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">CIM 322 Topic 2 JavaScript Fundamentals</div><div class="_3UuYwh zs8qzW">93 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/283181244/unit3-Basics-of-JavaScript-ppt" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit3-Basics of JavaScript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/283181244/149x198/17254283dc/1734602572?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/283181244/298x396/5fd097293e/1734602572?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2x9K4q"><span class="Icon-module_wrapper_LUeQrI _3BAw53"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.18 14.055a2 2 0 0 1-1.857 1.257H4.498a3.11 3.11 0 0 1-1.39-.328A3.812 3.812 0 0 1 1 11.574V5.312h3.382l2.103-3.206a2 2 0 0 1 3.203-.52l.433.433A3 3 0 0 1 11 4.14v1.172h2a3 3 0 0 1 3 3v.037c0 .763-.146 1.52-.43 2.228l-1.39 3.478Zm-9.682-.743h7.148a1 1 0 0 0 .928-.629l1.14-2.848A4 4 0 0 0 14 8.349v-.037a1 1 0 0 0-1-1H9V4.14a1 1 0 0 0-.293-.707L8.274 3 6.17 6.206a2 2 0 0 1-1.789 1.106H3v4.262c0 .686.388 1.314 1.002 1.62.154.078.324.118.496.118Z" fill="currentColor"></path></svg><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal"></span></span><div>60% (5)</div></div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit3-Basics of JavaScript</div><div class="_3UuYwh zs8qzW">62 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/776775607/Unit-5-Read-me" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 5 Read Me</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/776775607/149x198/b0f8fa51fc/1728201410?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/776775607/298x396/617f418c90/1728201410?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit 5 Read Me</div><div class="_3UuYwh zs8qzW">5 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/724820431/mean-stack" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Mean Stack</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/724820431/149x198/9ac3fd9ef6/1713578868?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/724820431/298x396/c4567e1f21/1713578868?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Mean Stack</div><div class="_3UuYwh zs8qzW">166 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/743769170/1-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script: Variables &scope, Data Types, Control Structures, Array Methods</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/743769170/149x198/5ed4d17778/1718878740?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/743769170/298x396/4a549286b5/1718878740?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Java Script: Variables &scope, Data Types, Control Structures, Array Methods</div><div class="_3UuYwh zs8qzW">35 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/doc/217423134/Javascript-Lecture" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script: - CGI (Common Gateway Interface) Programs</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/217423134/149x198/15a5556092/1421889031?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/217423134/298x396/a7d4e1c57e/1421889031?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Java Script: - CGI (Common Gateway Interface) Programs</div><div class="_3UuYwh zs8qzW">61 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/648626674/javascript-tutorial-Point" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Tutorial Point</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/648626674/149x198/251d409b91/1710539602?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/648626674/298x396/89494b554c/1710539602?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript Tutorial Point</div><div class="_3UuYwh zs8qzW">39 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/747192992/javascript-tutorial" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Tutorial</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/747192992/149x198/f88b48fa18/1719896596?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/747192992/298x396/dfb08e3ee1/1719896596?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript Tutorial</div><div class="_3UuYwh zs8qzW">30 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/155245337/Javascript-Notes" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Notes</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/155245337/149x198/4cdae23af5/1446794602?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/155245337/298x396/3db0cb6fd3/1446794602?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript Notes</div><div class="_3UuYwh zs8qzW">27 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/641067213/WT-UNIT-3-1-JAVASCRIPT" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">WT Unit-3.1 Javascript</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/641067213/149x198/c0ffb7a180/1710592530?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/641067213/298x396/666b43008a/1710592530?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">WT Unit-3.1 Javascript</div><div class="_3UuYwh zs8qzW">17 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/723878841/JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/723878841/149x198/5f51400c2a/1713343242?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/723878841/298x396/1572b56e54/1713343242?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Java Script</div><div class="_3UuYwh zs8qzW">142 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/657546713/js-intro" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Js Intro</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/657546713/149x198/62b279d9f0/1710525616?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/657546713/298x396/e31616e995/1710525616?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Js Intro</div><div class="_3UuYwh zs8qzW">38 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/360491798/JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/360491798/149x198/80d188049d/1507079924?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/360491798/298x396/0505fbf83a/1507079924?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Java Script</div><div class="_3UuYwh zs8qzW">40 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/619858635/Unit-1-Basics-of-JavaScript-Programming-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-1 Basics of JavaScript Programming</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/619858635/149x198/c2ded7ff00/1673788930?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/619858635/298x396/5ddfe23cb2/1673788930?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit-1 Basics of JavaScript Programming</div><div class="_3UuYwh zs8qzW">58 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/830420211/Unit-5-Java-Script-Minors" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-5 Java Script Minors</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/830420211/149x198/08f1ecb18f/1740035423?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/830420211/298x396/b85a67652b/1740035423?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Unit-5 Java Script Minors</div><div class="_3UuYwh zs8qzW">86 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/document/142816756/Javascript-Tutorial" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Tutorial</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/142816756/149x198/560dabb58c/1369163423?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/142816756/298x396/74c2aab6d8/1369163423?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Javascript Tutorial</div><div class="_3UuYwh zs8qzW">39 pages</div></div></div></div></li><li class="_2ariaX" data-e2e="document-list-item"><div class=""><div data-e2e="list-item-info" class="_1x3wi9"><a class="jKsa3q" data-e2e="list-item-link" href="https://www.scribd.com/presentation/753839630/Module-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Module 2</span></a><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/753839630/149x198/6247ccfbbc/1722080464?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/753839630/298x396/e17ab65ada/1722080464?v=1 2x" style="width:80px;height:106.66666666666667px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div><div class="_1wdVHx"><div class="_1zgq1v"><div class="_2Uoa2G">No ratings yet</div></div><div class="_33xQ8e _2kfau2" data-e2e="doc-info-title">Module 2</div><div class="_3UuYwh zs8qzW">116 pages</div></div></div></div></li></ul></div></div></section></div><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_hide_below_l_7M0-Xa GridColumn-module_extended_xl4_2_1yIW6E GridColumn-module_extended_xl3_2_mt-u-v GridColumn-module_extended_xl2_3_m7b4Yd GridColumn-module_extended_xl_3_-M4jBh GridColumn-module_extended_l_3_BRh6gm GridColumn-module_extended_m_3_WS7F6q GridColumn-module_extended_s_3_80JJD4 GridColumn-module_extended_xs_3_1WuHyd GridColumn-module_extended_xxs_3_glgZEz"></div></div><div class="GridRow-module_wrapper_Uub42x GridRow-module_extended_Bvagp4"><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_extended_xl4_12_UeyicL GridColumn-module_extended_xl3_12_TsrxQ- GridColumn-module_extended_xl2_12_ceos-a GridColumn-module_extended_xl_12_7vx87Y GridColumn-module_extended_l_12_gCRsqg GridColumn-module_extended_m_8_bDZzOd GridColumn-module_extended_s_4_ZU5JoR GridColumn-module_extended_xs_4_NH6tlg GridColumn-module_extended_xxs_4_dHKOII"></div></div></div><div class="GridContainer-module_wrapper_7Rx6L- _3-Y4VY _12m6WX GridContainer-module_extended_fiqt9l"><div class="GridRow-module_wrapper_Uub42x _12m6WX GridRow-module_extended_Bvagp4"><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_hide_below_xl2_lDmVVx GridColumn-module_extended_xl4_3_YfaGhk GridColumn-module_extended_xl3_3_9BGgFP GridColumn-module_extended_xl2_3_m7b4Yd GridColumn-module_extended_xl_3_-M4jBh GridColumn-module_extended_l_3_BRh6gm GridColumn-module_extended_m_3_WS7F6q GridColumn-module_extended_s_3_80JJD4 GridColumn-module_extended_xs_3_1WuHyd GridColumn-module_extended_xxs_3_glgZEz _12m6WX"></div><div class="GridColumn-module_wrapper_soqyu- GridColumn-module_extended_xl4_7_-9AEIh GridColumn-module_extended_xl3_7_B6ct2J GridColumn-module_extended_xl2_9_PxsDcr GridColumn-module_extended_xl_9_pyvIib GridColumn-module_extended_l_12_gCRsqg GridColumn-module_extended_m_8_bDZzOd GridColumn-module_extended_s_4_ZU5JoR GridColumn-module_extended_xs_4_NH6tlg GridColumn-module_extended_xxs_4_dHKOII"><div class="_1GApkd"><section aria-hidden="true" class="GfPAgr _2S5RNO" data-e2e="bottom-drawer-recs" style="transform:translateY(100px)"><button data-e2e="bottom-drawer-recs" class="_29KoyE" type="button">Related titles<span class="Icon-module_wrapper_LUeQrI _3eKLky _1DbhW3"><svg width="24" height="24" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path d="m3.705 16.735-1.77-1.78 9.9-9.89 9.9 9.9-1.77 1.77-8.13-8.13-8.13 8.13Z" fill="currentColor"></path></svg><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Click to expand Related Titles</span></span></button><div class="" data-e2e="docpage-content-carousel"><section><div class="Carousel-module_outerWrapper_7O67rx"><nav class="Carousel-module_paddlesWrapper_HxMBB1"><button type="button" class="Paddle-module_paddle_xH1s-x Carousel-module_paddleBack_ceUxDf Paddle-module_hidden_d9HT-U"><span class="Icon-module_wrapper_LUeQrI"><svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill-rule="evenodd" clip-rule="evenodd" d="m4.414 6 4.293-4.293L7.293.293 1.586 6l5.707 5.707 1.414-1.414L4.414 6Z" fill="currentColor"></path></svg><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal"></span></span><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Carousel Previous</span></button><button type="button" class="Paddle-module_paddle_xH1s-x Carousel-module_paddleForward_tKyBsP Carousel-module_marginAlign_Elilb6 Paddle-module_hidden_d9HT-U"><span class="Icon-module_wrapper_LUeQrI"><svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" focusable="false"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.586 6 3.293 1.707 4.707.293 10.414 6l-5.707 5.707-1.414-1.414L7.586 6Z" fill="currentColor"></path></svg><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal"></span></span><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Carousel Next</span></button></nav><ul class="Carousel-module_scrollingWrapper_jUWcdf"><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/261802634/Java-Script-in-Mirth" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script in Mirth</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/261802634/149x198/b57f4f10c8/1428991663?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/261802634/298x396/38b7ead67d/1428991663?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Java Script in Mirth</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/769435129/Unit-I-Basics-of-JavaScript-Programming" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit I - Basics of JavaScript Programming.</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/769435129/149x198/5ec18c0814/1726417049?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/769435129/298x396/8c8d46e219/1726417049?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit I - Basics of JavaScript Programming.</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/853923681/JS-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JS 1</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/853923681/149x198/64dc18597c/1745592744?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/853923681/298x396/c2fc35fa83/1745592744?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">JS 1</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/747255157/CSS-chapter-1-overall" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CSS Chapter 1 Overall</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/747255157/149x198/f512a776a6/1719917079?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/747255157/298x396/48b9ebc587/1719917079?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">CSS Chapter 1 Overall</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/800882943/msbte-campus-css-unit-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">msbte campus css unit 1</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/800882943/149x198/888f8cbbe0/1733366804?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/800882943/298x396/43fbd1a7c1/1733366804?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">msbte campus css unit 1</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/546022830/js11-docx" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-Iv/ Chapter - Xi Learning Javascript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/546022830/149x198/cab3cc9a9b/1710543099?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/546022830/298x396/2a77ba8c9e/1710543099?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit-Iv/ Chapter - Xi Learning Javascript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/851808624/BE-5-IT-GECBVN-BharatVainsh-Unit-5-JavaScript-WD-3151606-2023" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">BE 5 IT GECBVN BharatVainsh Unit 5(JavaScript) WD 3151606 2023</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/851808624/149x198/6538e2d6e7/1745134075?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/851808624/298x396/8dc9b9ee3c/1745134075?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">BE 5 IT GECBVN BharatVainsh Unit 5(JavaScript) WD 3151606 2023</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/758373705/Unit-I-Basics-of-Java-Script-Programming" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit I Basics of Java Script Programming</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/758373705/149x198/fd0beeeaca/1723483396?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/758373705/298x396/6a73e4af83/1723483396?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit I Basics of Java Script Programming</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/772481160/Javascript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/772481160/149x198/6221ab02b7/1727176951?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/772481160/298x396/417d125943/1727176951?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/809796007/Js-Ppt-converted-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Js Ppt-converted (1)</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/809796007/149x198/da596a0e4f/1735536307?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/809796007/298x396/982cbb7772/1735536307?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Js Ppt-converted (1)</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/414159522/Cs101-Lec21" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CS101 Introduction To Computing: (Web Development Lecture 7)</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/414159522/149x198/42ce4922dd/1561200338?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/414159522/298x396/9b4eceaf75/1561200338?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">CS101 Introduction To Computing: (Web Development Lecture 7)</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/342682379/Javascript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/342682379/149x198/77a9031934/1490180225?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/342682379/298x396/7faeb0514b/1490180225?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/517499225/JAVASCRIPT-INTRODUCTION-NOTES" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Introduction Notes</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/517499225/149x198/0d834324db/1741121324?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/517499225/298x396/9a1e4d4968/1741121324?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript Introduction Notes</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/482317883/UI-UX-presentation6" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">UI/UX Presentation6</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/482317883/149x198/1f6b15d9f0/1710563168?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/482317883/298x396/11a48a05b3/1710563168?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">UI/UX Presentation6</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/746030433/Website-JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Website JavaScript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/746030433/149x198/aee6130250/1719530562?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/746030433/298x396/784a0ead12/1719530562?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Website JavaScript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/712966631/JavaScript-Document" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JavaScript Document</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/712966631/149x198/c65fb9a9b3/1710313969?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/712966631/298x396/71df6f86ce/1710313969?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">JavaScript Document</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/694817687/Introduction-to-JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Introduction To JavaScript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/694817687/149x198/873b38d643/1703577884?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/694817687/298x396/8f3eec768b/1703577884?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Introduction To JavaScript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/831757988/Javascript-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript-1</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/831757988/149x198/a21c67e6af/1740333880?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/831757988/298x396/4d75393c76/1740333880?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript-1</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/473590298/06-JavaScript-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Web Engineering Javascript (Part 1) : Muhammad Umair Naru Department of Computer Science</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/473590298/149x198/749f1795fa/1710545944?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/473590298/298x396/2b034146e7/1710545944?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Web Engineering Javascript (Part 1) : Muhammad Umair Naru Department of Computer Science</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/788348031/Javascript-Mod3" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Mod3</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/788348031/149x198/9fbd4a3063/1730819768?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/788348031/298x396/e9ad2311d7/1730819768?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript Mod3</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/691878065/JavaScript-Unit-3-Part-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JavaScript (Unit-3) Part 1</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/691878065/149x198/765b0f57fc/1702391968?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/691878065/298x396/376c327383/1702391968?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">JavaScript (Unit-3) Part 1</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/434139112/JAVASCRIPT" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">X, Y, Z X Y Z X + Y : 1. What Is Javascript?Features of Javascript, What Is Javascript Syntax?</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/434139112/149x198/987c6b032c/1573311023?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/434139112/298x396/1dbd290ab7/1573311023?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">X, Y, Z X Y Z X + Y : 1. What Is Javascript?Features of Javascript, What Is Javascript Syntax?</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/845818953/JAVASCRIPT-MODULE-4-full" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JAVASCRIPT-MODULE 4 full</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/845818953/149x198/1f14b9718d/1743674023?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/845818953/298x396/bb2e21d057/1743674023?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">JAVASCRIPT-MODULE 4 full</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/848282879/JavaScript-ppt" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">JavaScript ppt</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/848282879/149x198/89a5644a26/1744262714?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/848282879/298x396/c8e0404f52/1744262714?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">JavaScript ppt</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/727968048/Unit-I-PPT-CSS-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit I PPT CSS 1</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/727968048/149x198/b5b4bc72fc/1714459483?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/727968048/298x396/7e0b24c58d/1714459483?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit I PPT CSS 1</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/685362394/Unit-1-Basics-Of-JavaScript-Programming" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-1 Basics of JavaScript Programming</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/685362394/149x198/e3cba53642/1710522848?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/685362394/298x396/bb77dacf87/1710522848?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit-1 Basics of JavaScript Programming</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/698300749/javascript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/698300749/149x198/88c217b2d0/1710548228?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/698300749/298x396/9f2718d891/1710548228?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/821575709/Module2-Javascript-ppt" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Module2 Javascript.ppt</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/821575709/149x198/caca872efa/1738168190?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/821575709/298x396/336ca740d0/1738168190?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Module2 Javascript.ppt</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/753898698/1-JS-Intro-opr-dt-var-unit-3-Copy" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">1 JS Intro Opr DT Var (Unit 3)</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/753898698/149x198/7423bb5248/1722100529?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/753898698/298x396/a4edde855e/1722100529?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">1 JS Intro Opr DT Var (Unit 3)</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/847926250/Unit-5-JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 5 JavaScript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/847926250/149x198/986b39b137/1744191974?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/847926250/298x396/8186c8e8ee/1744191974?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit 5 JavaScript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/838971253/Session1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Session1</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/838971253/149x198/13097c886a/1741904611?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/838971253/298x396/f640b5d0bd/1741904611?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Session1</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/793131024/CSS-Unit-1-6" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CSS Unit 1-6</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/793131024/149x198/ddbb4d22c5/1731786333?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/793131024/298x396/0b7668ec1b/1731786333?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">CSS Unit 1-6</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/810114140/Week-3" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Week 3</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/810114140/149x198/88f525b874/1735620399?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/810114140/298x396/eaf505f536/1735620399?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Week 3</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/783210993/Unit-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 2</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/783210993/149x198/157d7f7530/1729653492?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/783210993/298x396/fcdceb171d/1729653492?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit 2</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/847934867/CIM-322-Topic-2-JavaScript-Fundamentals" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">CIM 322 Topic 2 JavaScript Fundamentals</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/847934867/149x198/b81835112d/1744193971?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/847934867/298x396/f832907d60/1744193971?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">CIM 322 Topic 2 JavaScript Fundamentals</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/283181244/unit3-Basics-of-JavaScript-ppt" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit3-Basics of JavaScript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/283181244/149x198/17254283dc/1734602572?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/283181244/298x396/5fd097293e/1734602572?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit3-Basics of JavaScript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/776775607/Unit-5-Read-me" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit 5 Read Me</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/776775607/149x198/b0f8fa51fc/1728201410?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/776775607/298x396/617f418c90/1728201410?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit 5 Read Me</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/724820431/mean-stack" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Mean Stack</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/724820431/149x198/9ac3fd9ef6/1713578868?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/724820431/298x396/c4567e1f21/1713578868?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Mean Stack</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/743769170/1-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script: Variables &scope, Data Types, Control Structures, Array Methods</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/743769170/149x198/5ed4d17778/1718878740?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/743769170/298x396/4a549286b5/1718878740?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Java Script: Variables &scope, Data Types, Control Structures, Array Methods</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/doc/217423134/Javascript-Lecture" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script: - CGI (Common Gateway Interface) Programs</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/217423134/149x198/15a5556092/1421889031?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/217423134/298x396/a7d4e1c57e/1421889031?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Java Script: - CGI (Common Gateway Interface) Programs</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/648626674/javascript-tutorial-Point" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Tutorial Point</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/648626674/149x198/251d409b91/1710539602?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/648626674/298x396/89494b554c/1710539602?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript Tutorial Point</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/747192992/javascript-tutorial" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Tutorial</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/747192992/149x198/f88b48fa18/1719896596?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/747192992/298x396/dfb08e3ee1/1719896596?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript Tutorial</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/155245337/Javascript-Notes" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Notes</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/155245337/149x198/4cdae23af5/1446794602?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/155245337/298x396/3db0cb6fd3/1446794602?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript Notes</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/641067213/WT-UNIT-3-1-JAVASCRIPT" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">WT Unit-3.1 Javascript</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/641067213/149x198/c0ffb7a180/1710592530?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/641067213/298x396/666b43008a/1710592530?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">WT Unit-3.1 Javascript</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/723878841/JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/723878841/149x198/5f51400c2a/1713343242?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/723878841/298x396/1572b56e54/1713343242?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Java Script</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/657546713/js-intro" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Js Intro</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/657546713/149x198/62b279d9f0/1710525616?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/657546713/298x396/e31616e995/1710525616?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Js Intro</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/360491798/JavaScript" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Java Script</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/360491798/149x198/80d188049d/1507079924?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/360491798/298x396/0505fbf83a/1507079924?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Java Script</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/619858635/Unit-1-Basics-of-JavaScript-Programming-1" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-1 Basics of JavaScript Programming</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/619858635/149x198/c2ded7ff00/1673788930?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/619858635/298x396/5ddfe23cb2/1673788930?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit-1 Basics of JavaScript Programming</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/830420211/Unit-5-Java-Script-Minors" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Unit-5 Java Script Minors</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/830420211/149x198/08f1ecb18f/1740035423?v=1" srcSet="https://imgv2-2-f.scribdassets.com/img/document/830420211/298x396/b85a67652b/1740035423?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Unit-5 Java Script Minors</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/document/142816756/Javascript-Tutorial" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Javascript Tutorial</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-2-f.scribdassets.com/img/document/142816756/149x198/560dabb58c/1369163423?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/142816756/298x396/74c2aab6d8/1369163423?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Javascript Tutorial</div></div></div></div></li><li class="v2vhXd"><div class=""><a class="jKsa3q" href="https://www.scribd.com/presentation/753839630/Module-2" target="_blank"><span style="position:absolute;border:0;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;word-wrap:normal">Module 2</span></a><div class="_2yVS67"><div class="DocumentThumbnail-module_wrapper_ljLM72"><img class="DocumentThumbnail-module_image_0tTQ0O _2Jhoqp" data-testid="thumbnail" alt="PDF Document" loading="eager" src="https://imgv2-1-f.scribdassets.com/img/document/753839630/149x198/6247ccfbbc/1722080464?v=1" srcSet="https://imgv2-1-f.scribdassets.com/img/document/753839630/298x396/e17ab65ada/1722080464?v=1 2x" style="width:108px;height:144px"/><svg class="DocumentThumbnail-module_tagOverlay_hN0eTR" viewBox="0 0 108 145" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H35V15C35 17.2091 33.2091 19 31 19H0V0Z" fill="var(--color-charcoal-400)"></path><text x="8" y="13" fill="var(--spl-color-text-white)">PDF</text></svg><div class="DocumentThumbnail-module_stack_66zCPf"></div><div class="DocumentThumbnail-module_stack_66zCPf"></div></div></div><div class="gwNvjK"><div class="_1x3wi9"><div class="_3fG38E" data-e2e="rec-item-thumbnail-title">Module 2</div></div></div></div></li></ul></div></section></div></section></div></div></div><div class="_31MHId"></div></div><footer class="Footer-module_wrapper__7jj0T _35Otjh" id="global_footer"><h2 class="visually_hidden">Footer menu</h2><div class="GridContainer-module_wrapper__7Rx6L GridContainer-module_extended__fiqt9"><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="BackToTopLink-module_wrapper__HTQnD visually_hidden"><a data-e2e="back-to-top-link" href="#global_header" class="BackToTopLink-module_link__EOy-v">Back to top</a></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_horizontalColumn__vuSBJ"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">About</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="About Scribd, Inc." class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_about_scribd_link" href="https://www.scribd.com/about"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">About Scribd, Inc.</span></span></a></li><li><a aria-disabled="false" aria-label="Everand: Ebooks & Audiobooks" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_everand_books_audiobooks_link" href="https://www.everand.com" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Everand: Ebooks & Audiobooks</span></span></a></li><li><a aria-disabled="false" aria-label="SlideShare" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="shared.footer.slideshare" href="https://www.slideshare.net/" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">SlideShare</span></span></a></li><li><a aria-disabled="false" aria-label="Join our team!" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_join_our_team_link" href="https://www.scribd.com/careers" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Join our team!</span></span></a></li><li><a aria-disabled="false" aria-label="Contact us" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_contact_us_link" href="https://www.scribd.com/contact" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Contact us</span></span></a></li></ul></div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Support</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Help / FAQ" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_help_faq_link" href="http://support.scribd.com/hc/en-us"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Help / FAQ</span></span></a></li><li><a aria-disabled="false" aria-label="Accessibility" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_accessibility_link" href="https://support.scribd.com/hc/en-us/articles/210129586-Accessibility-Notice"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Accessibility</span></span></a></li><li><a aria-disabled="false" aria-label="Purchase help" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_purchase_help_link" href="https://support.scribd.com/hc/en-us/sections/202246306"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Purchase help</span></span></a></li><li><a aria-disabled="false" aria-label="AdChoices" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_adchoices_link" href="https://support.scribd.com/hc/en-us/articles/210129366"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">AdChoices</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Legal</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Terms" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_terms_link" href="https://support.scribd.com/hc/en-us/articles/210129326-General-Terms-of-Use"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Terms</span></span></a></li><li><a aria-disabled="false" aria-label="Privacy" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_privacy_link" href="https://www.scribd.com/privacy" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Privacy</span></span></a></li><li><a aria-disabled="false" aria-label="Copyright" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_copyright_link" href="https://support.scribd.com/hc/en-us/sections/202246086"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Copyright</span></span></a></li><li><a aria-disabled="false" aria-label="Do not sell or share my personal information" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_privacy_request_form_link" href="https://support.scribd.com/hc/articles/360038016931-Privacy-Rights-Request-Form"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Do not sell or share my personal information</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_s__Lbw11 GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Social</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Scribd on Instagram" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_instagram_link" href="https://www.instagram.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.081c1.602 0 1.792.006 2.425.035.584.027.902.124 1.114.207.26.096.497.249.69.448.2.194.353.43.45.691.082.212.18.53.206 1.114.029.633.035.823.035 2.425 0 1.602-.006 1.792-.035 2.425-.027.585-.124.902-.207 1.114a1.99 1.99 0 01-1.138 1.138c-.212.082-.53.18-1.114.207-.633.029-.823.035-2.425.035-1.602 0-1.792-.006-2.425-.035-.585-.027-.902-.124-1.114-.207a1.858 1.858 0 01-.69-.449c-.2-.193-.353-.43-.45-.69-.082-.212-.18-.53-.206-1.114-.029-.633-.035-.823-.035-2.425 0-1.602.006-1.792.035-2.425.027-.585.124-.902.207-1.114.096-.26.25-.497.449-.69.193-.2.43-.353.69-.45.212-.082.53-.18 1.114-.206.633-.029.823-.035 2.425-.035L8 3.081zm0-1.082c-1.629 0-1.833.007-2.473.036-.64.03-1.076.132-1.457.28-.4.15-.763.387-1.063.692-.305.3-.541.663-.692 1.063-.148.381-.25.818-.279 1.457C2.007 6.165 2 6.37 2 8s.007 1.834.036 2.474c.03.64.13 1.075.279 1.456.15.4.387.763.692 1.063.3.305.663.541 1.063.692.381.148.818.25 1.457.279.638.029.844.036 2.473.036 1.63 0 1.834-.007 2.474-.036.64-.03 1.075-.13 1.456-.28a3.068 3.068 0 001.755-1.754c.148-.381.25-.818.279-1.457C13.993 9.835 14 9.63 14 8c0-1.63-.007-1.833-.036-2.473-.03-.64-.13-1.075-.28-1.456-.15-.4-.386-.763-.691-1.063a2.946 2.946 0 00-1.063-.692c-.381-.148-.818-.25-1.457-.279C9.835 2.007 9.63 2 8 2v-.001zm0 2.92a3.081 3.081 0 100 6.162A3.081 3.081 0 008 4.92zm0 5.082A2 2 0 118 6 2 2 0 018 10zm3.923-5.204a.72.72 0 11-1.44 0 .72.72 0 011.44 0z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Instagram</span></span> <!-- -->Instagram</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Facebook" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_facebook_link" href="https://www.facebook.com/Scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2a6 6 0 01.938 11.927V9.734h1.397L10.602 8H8.937V6.875c0-.474.233-.938.978-.938h.757V4.462s-.08-.014-.21-.032a9.524 9.524 0 00-.887-.08 6.278 6.278 0 00-.246-.005c-1.37 0-2.267.83-2.267 2.334V8H5.54v1.734h1.524v4.193A6.002 6.002 0 018 2z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Facebook</span></span> <!-- -->Facebook</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Pinterest" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_pinterest_link" href="https://www.pinterest.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.217 12.268A5.98 5.98 0 018 14c-.62 0-1.218-.094-1.78-.269.246-.4.606-1.045.738-1.563l.375-1.427c.193.375.766.691 1.373.691 1.808 0 3.111-1.664 3.111-3.733 0-1.985-1.62-3.467-3.698-3.467-2.593 0-3.966 1.738-3.966 3.63 0 .884.47 1.975 1.22 2.326.113.054.178.03.202-.08l.058-.233.11-.448a.179.179 0 00-.04-.173c-.246-.3-.444-.854-.444-1.368 0-1.323 1.003-2.602 2.711-2.602 1.477 0 2.509 1.002 2.509 2.44 0 1.62-.82 2.745-1.886 2.745-.588 0-1.033-.489-.89-1.086.062-.255.143-.517.222-.772.142-.46.277-.898.277-1.228 0-.46-.246-.845-.76-.845-.602 0-1.086.622-1.086 1.457 0 .528.177.889.177.889s-.592 2.514-.7 2.983c-.12.518-.075 1.247-.02 1.722A6.003 6.003 0 012 8a6 6 0 016.653-5.965A5.988 5.988 0 0113.99 8.01a5.981 5.981 0 01-1.773 4.258z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Pinterest</span></span> <!-- -->Pinterest</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_m__-PoVO GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_m__-PoVO GridColumn-module_extended_xl4_2__1yIW6 GridColumn-module_extended_xl3_2__mt-u- GridColumn-module_extended_xl2_2__A8qwF GridColumn-module_extended_xl_2__QYBNc GridColumn-module_extended_l_2__iqMJD GridColumn-module_extended_m_2__9nXEO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Get our free apps</p><ul class="mobile_icons wrapper__app_store_buttons"><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Download on the App Store" class="app_link ios_btn" data-e2e="ios_btn" href="https://apps.apple.com/us/app/6448807714?mt=8&pt=298534"><div class="app_store_img"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Download on the App Store"/></div></a></li><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Get it on Google Play" class="app_link google_play_btn" data-e2e="google_play_btn" href="https://play.google.com/store/apps/details?id=com.scribd.app.reader0.docs"><div class="app_store_img play_store_link"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Get it on Google Play"/></div></a></li></ul></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_s__NbVNC GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">About</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="About Scribd, Inc." class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_about_scribd_link" href="https://www.scribd.com/about"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">About Scribd, Inc.</span></span></a></li><li><a aria-disabled="false" aria-label="Everand: Ebooks & Audiobooks" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_everand_books_audiobooks_link" href="https://www.everand.com" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Everand: Ebooks & Audiobooks</span></span></a></li><li><a aria-disabled="false" aria-label="SlideShare" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="shared.footer.slideshare" href="https://www.slideshare.net/" target="_blank"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">SlideShare</span></span></a></li><li><a aria-disabled="false" aria-label="Join our team!" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_join_our_team_link" href="https://www.scribd.com/careers" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Join our team!</span></span></a></li><li><a aria-disabled="false" aria-label="Contact us" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_about_column_contact_us_link" href="https://www.scribd.com/contact" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Contact us</span></span></a></li></ul></div><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Legal</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Terms" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_terms_link" href="https://support.scribd.com/hc/en-us/articles/210129326-General-Terms-of-Use"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Terms</span></span></a></li><li><a aria-disabled="false" aria-label="Privacy" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_privacy_link" href="https://www.scribd.com/privacy" target="_self"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Privacy</span></span></a></li><li><a aria-disabled="false" aria-label="Copyright" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_column_copyright_link" href="https://support.scribd.com/hc/en-us/sections/202246086"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Copyright</span></span></a></li><li><a aria-disabled="false" aria-label="Do not sell or share my personal information" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_legal_privacy_request_form_link" href="https://support.scribd.com/hc/articles/360038016931-Privacy-Rights-Request-Form"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Do not sell or share my personal information</span></span></a></li></ul></div></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_s__NbVNC GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_2__-n3HH GridColumn-module_extended_xs_2__C9iyY GridColumn-module_extended_xxs_2__1MEQR"><div class="Footer-module_verticalColumn__-CR6f"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Support</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Help / FAQ" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_help_faq_link" href="http://support.scribd.com/hc/en-us"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Help / FAQ</span></span></a></li><li><a aria-disabled="false" aria-label="Accessibility" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_accessibility_link" href="https://support.scribd.com/hc/en-us/articles/210129586-Accessibility-Notice"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Accessibility</span></span></a></li><li><a aria-disabled="false" aria-label="Purchase help" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_purchase_help_link" href="https://support.scribd.com/hc/en-us/sections/202246306"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Purchase help</span></span></a></li><li><a aria-disabled="false" aria-label="AdChoices" class="TextButton-module_wrapper__ZwW-w FooterLink-module_wrapper__V1y4b" data-e2e="footer_support_column_adchoices_link" href="https://support.scribd.com/hc/en-us/articles/210129366"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">AdChoices</span></span></a></li></ul></div><div><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Social</p><ul class="Footer-module_columnList__fqabA"><li><a aria-disabled="false" aria-label="Scribd on Instagram" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_instagram_link" href="https://www.instagram.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.081c1.602 0 1.792.006 2.425.035.584.027.902.124 1.114.207.26.096.497.249.69.448.2.194.353.43.45.691.082.212.18.53.206 1.114.029.633.035.823.035 2.425 0 1.602-.006 1.792-.035 2.425-.027.585-.124.902-.207 1.114a1.99 1.99 0 01-1.138 1.138c-.212.082-.53.18-1.114.207-.633.029-.823.035-2.425.035-1.602 0-1.792-.006-2.425-.035-.585-.027-.902-.124-1.114-.207a1.858 1.858 0 01-.69-.449c-.2-.193-.353-.43-.45-.69-.082-.212-.18-.53-.206-1.114-.029-.633-.035-.823-.035-2.425 0-1.602.006-1.792.035-2.425.027-.585.124-.902.207-1.114.096-.26.25-.497.449-.69.193-.2.43-.353.69-.45.212-.082.53-.18 1.114-.206.633-.029.823-.035 2.425-.035L8 3.081zm0-1.082c-1.629 0-1.833.007-2.473.036-.64.03-1.076.132-1.457.28-.4.15-.763.387-1.063.692-.305.3-.541.663-.692 1.063-.148.381-.25.818-.279 1.457C2.007 6.165 2 6.37 2 8s.007 1.834.036 2.474c.03.64.13 1.075.279 1.456.15.4.387.763.692 1.063.3.305.663.541 1.063.692.381.148.818.25 1.457.279.638.029.844.036 2.473.036 1.63 0 1.834-.007 2.474-.036.64-.03 1.075-.13 1.456-.28a3.068 3.068 0 001.755-1.754c.148-.381.25-.818.279-1.457C13.993 9.835 14 9.63 14 8c0-1.63-.007-1.833-.036-2.473-.03-.64-.13-1.075-.28-1.456-.15-.4-.386-.763-.691-1.063a2.946 2.946 0 00-1.063-.692c-.381-.148-.818-.25-1.457-.279C9.835 2.007 9.63 2 8 2v-.001zm0 2.92a3.081 3.081 0 100 6.162A3.081 3.081 0 008 4.92zm0 5.082A2 2 0 118 6 2 2 0 018 10zm3.923-5.204a.72.72 0 11-1.44 0 .72.72 0 011.44 0z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Instagram</span></span> <!-- -->Instagram</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Facebook" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_facebook_link" href="https://www.facebook.com/Scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 2a6 6 0 01.938 11.927V9.734h1.397L10.602 8H8.937V6.875c0-.474.233-.938.978-.938h.757V4.462s-.08-.014-.21-.032a9.524 9.524 0 00-.887-.08 6.278 6.278 0 00-.246-.005c-1.37 0-2.267.83-2.267 2.334V8H5.54v1.734h1.524v4.193A6.002 6.002 0 018 2z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Facebook</span></span> <!-- -->Facebook</span></span></a></li><li><a aria-disabled="false" aria-label="Scribd on Pinterest" class="TextButton-module_wrapper__ZwW-w SocialLink-module_wrapper__7Rvvt" data-e2e="footer_social_column_pinterest_link" href="https://www.pinterest.com/scribd/"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw SocialLink-module_iconImage__JSzvR"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M12.217 12.268A5.98 5.98 0 018 14c-.62 0-1.218-.094-1.78-.269.246-.4.606-1.045.738-1.563l.375-1.427c.193.375.766.691 1.373.691 1.808 0 3.111-1.664 3.111-3.733 0-1.985-1.62-3.467-3.698-3.467-2.593 0-3.966 1.738-3.966 3.63 0 .884.47 1.975 1.22 2.326.113.054.178.03.202-.08l.058-.233.11-.448a.179.179 0 00-.04-.173c-.246-.3-.444-.854-.444-1.368 0-1.323 1.003-2.602 2.711-2.602 1.477 0 2.509 1.002 2.509 2.44 0 1.62-.82 2.745-1.886 2.745-.588 0-1.033-.489-.89-1.086.062-.255.143-.517.222-.772.142-.46.277-.898.277-1.228 0-.46-.246-.845-.76-.845-.602 0-1.086.622-1.086 1.457 0 .528.177.889.177.889s-.592 2.514-.7 2.983c-.12.518-.075 1.247-.02 1.722A6.003 6.003 0 012 8a6 6 0 016.653-5.965A5.988 5.988 0 0113.99 8.01a5.981 5.981 0 01-1.773 4.258z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">Pinterest</span></span> <!-- -->Pinterest</span></span></a></li></ul></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_m__zwIrv GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><p class="Footer-module_columnHeader__gcdjp Footer-module_scribdRebrandColumnHeader__OzOfB">Get our free apps</p><ul class="mobile_icons wrapper__app_store_buttons"><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Download on the App Store" class="app_link ios_btn" data-e2e="ios_btn" href="https://apps.apple.com/us/app/6448807714?mt=8&pt=298534"><div class="app_store_img"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Download on the App Store"/></div></a></li><li class="wrapper__store_button" data-e2e="app_store_btn"><a aria-label="Scribd - Get it on Google Play" class="app_link google_play_btn" data-e2e="google_play_btn" href="https://play.google.com/store/apps/details?id=com.scribd.app.reader0.docs"><div class="app_store_img play_store_link"><img class="LazyImage-module_image__uh0sq" alt="Scribd - Get it on Google Play"/></div></a></li></ul></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_horizontalDivider__Z6XJu"></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_extended_xl4_7__-9AEI GridColumn-module_extended_xl3_7__B6ct2 GridColumn-module_extended_xl2_7__Nztja GridColumn-module_extended_xl_7__OFVFv GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><ul class="ContentTypeColumn-module_contentTypesList__WIKOq"><li><a aria-disabled="false" aria-label="Documents" class="TextButton-module_wrapper__ZwW-w ContentTypeColumn-module_contentTypeLink__K3M9d" data-e2e="footer_content_type_column_documents_link" href="/https/www.scribd.com/docs"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl">Documents</span></span></a></li></ul></div><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_below_l__7M0-X GridColumn-module_extended_xl4_5__PuEUy GridColumn-module_extended_xl3_5__aTZFP GridColumn-module_extended_xl2_5__UvHIq GridColumn-module_extended_xl_5__qmwN8 GridColumn-module_extended_l_5__VLQLS GridColumn-module_extended_m_5__HSrx- GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomRightContainer__5MVkq"><div class="Footer-module_bottomLanguage__ZSHe1"><div class="Footer-module_bottomLanguageText__S7opW">Language<!-- -->:</div><div class="DropdownMenu-module_wrapper__-3wi4" data-e2e="footer_language_picker_link"><a aria-disabled="false" aria-expanded="false" class="TextButton-module_wrapper__ZwW-w menu_handle Footer-module_menuHandle__A-Ub8" href="#"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><div class="Footer-module_languageDropdownContent__Ps0E4">English<!-- --> <span class="SvgIcon-module_wrapper__1fPqw"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M8.24 11.66L4 7.41 5.41 6l2.83 2.83L11.07 6l1.42 1.41-4.25 4.25z" fill="currentColor"></path></svg></span></div></span></span></a><div class="MenuItems-module_wrapper__y6cjo MenuItems-module_top__2bxjj Footer-module_menuItems__6usGF" data-e2e="menu-items"><span class="breakpoint_hide s atAndAbove"><button aria-disabled="false" class="TextButton-module_wrapper__ZwW-w TextButton-module_default__ekglb MenuItems-module_closeButton__ZAyQt" data-e2e="close-button" type="button"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw"><svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.414 9l7.293-7.293L16.293.293 9 7.586 1.707.293.293 1.707 7.586 9 .293 16.293l1.414 1.414L9 10.414l7.293 7.293 1.414-1.414L10.414 9z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">close menu</span></span></span></span></button></span><div><ul class="LanguageLinks-module_list__Vs9Gq" role="menu"><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9 LanguageLink-module_linkSelected__SuxJ3" href="/https/www.scribd.com/language?id=en" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ LanguageLink-module_iconSelected__DAMML"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8A6 6 0 112 8a6 6 0 0112 0zm2 0A8 8 0 110 8a8 8 0 0116 0zm-8 4a4 4 0 100-8 4 4 0 000 8z" fill="currentColor"></path></svg></span><span lang="en">English</span><span class="visually_hidden">(selected)</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=es" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="es">Español</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=pt-br" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="pt-br">Português</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=de" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="de">Deutsch</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=fr" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="fr">Français</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=ru" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="ru">Русский</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=it" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="it">Italiano</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=ro" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="ro">Română</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=id" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="id">Bahasa Indonesia</span></a></li></ul><a href="#" class="LanguageLinks-module_learnMoreLink__SpBO4" data-e2e="learn_more_link">Learn more</a></div></div></div></div><div class="Footer-module_bottomCopyright__WjBga" data-e2e="footer_copyright_text"><span>Copyright © 2025 Scribd Inc.</span></div></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomLanguage__ZSHe1 Footer-module_bottomLanguageMargin__e40ar Footer-module_topLanguageMargin__psISJ"><div class="Footer-module_bottomLanguageText__S7opW">Language<!-- -->:</div><div class="DropdownMenu-module_wrapper__-3wi4" data-e2e="footer_language_picker_link"><a aria-disabled="false" aria-expanded="false" class="TextButton-module_wrapper__ZwW-w menu_handle Footer-module_menuHandle__A-Ub8" href="#"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><div class="Footer-module_languageDropdownContent__Ps0E4">English<!-- --> <span class="SvgIcon-module_wrapper__1fPqw"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path d="M8.24 11.66L4 7.41 5.41 6l2.83 2.83L11.07 6l1.42 1.41-4.25 4.25z" fill="currentColor"></path></svg></span></div></span></span></a><div class="MenuItems-module_wrapper__y6cjo MenuItems-module_top__2bxjj Footer-module_menuItems__6usGF" data-e2e="menu-items"><span class="breakpoint_hide s atAndAbove"><button aria-disabled="false" class="TextButton-module_wrapper__ZwW-w TextButton-module_default__ekglb MenuItems-module_closeButton__ZAyQt" data-e2e="close-button" type="button"><span class="TextButton-module_content__6x-Ra"><span class="TextButton-module_children__HwxUl"><span class="SvgIcon-module_wrapper__1fPqw"><svg width="18" height="18" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.414 9l7.293-7.293L16.293.293 9 7.586 1.707.293.293 1.707 7.586 9 .293 16.293l1.414 1.414L9 10.414l7.293 7.293 1.414-1.414L10.414 9z" fill="currentColor"></path></svg><span style="border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;word-wrap:normal">close menu</span></span></span></span></button></span><div><ul class="LanguageLinks-module_list__Vs9Gq" role="menu"><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9 LanguageLink-module_linkSelected__SuxJ3" href="/https/www.scribd.com/language?id=en" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ LanguageLink-module_iconSelected__DAMML"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M14 8A6 6 0 112 8a6 6 0 0112 0zm2 0A8 8 0 110 8a8 8 0 0116 0zm-8 4a4 4 0 100-8 4 4 0 000 8z" fill="currentColor"></path></svg></span><span lang="en">English</span><span class="visually_hidden">(selected)</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=es" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="es">Español</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=pt-br" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="pt-br">Português</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=de" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="de">Deutsch</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=fr" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="fr">Français</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=ru" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="ru">Русский</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=it" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="it">Italiano</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=ro" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="ro">Română</span></a></li><li class="language_item Footer-module_languageLink__IOHdz" role="none"><a class="LanguageLink-module_link__ncYa9" href="/https/www.scribd.com/language?id=id" role="menuitem"><span class="SvgIcon-module_wrapper__1fPqw LanguageLink-module_icon__2uDWZ"><svg width="16" height="16" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-hidden="true" class="SvgIcon-module_icon__sUHUn"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 14A6 6 0 108 2a6 6 0 000 12zm0 2A8 8 0 108 0a8 8 0 000 16z" fill="currentColor"></path></svg></span><span lang="id">Bahasa Indonesia</span></a></li></ul><a href="#" class="LanguageLinks-module_learnMoreLink__SpBO4" data-e2e="learn_more_link">Learn more</a></div></div></div></div></div></div><div class="GridRow-module_wrapper__Uub42 GridRow-module_extended__Bvagp"><div class="GridColumn-module_wrapper__soqyu GridColumn-module_hide_above_l__UT1-z GridColumn-module_extended_xl4_12__Ueyic GridColumn-module_extended_xl3_12__TsrxQ GridColumn-module_extended_xl2_12__ceos- GridColumn-module_extended_xl_12__7vx87 GridColumn-module_extended_l_12__gCRsq GridColumn-module_extended_m_8__bDZzO GridColumn-module_extended_s_4__ZU5Jo GridColumn-module_extended_xs_4__NH6tl GridColumn-module_extended_xxs_4__dHKOI"><div class="Footer-module_bottomCopyright__WjBga" data-e2e="footer_copyright_text"><span>Copyright © 2025 Scribd Inc.</span></div></div></div></div></footer></div></div><script type="speculationrules">{"prefetch":[{"where":{"href_matches":["/","/doc/*","/docs/*","/document/*","/presentation/*","/what-is-scribd"]},"eagerness":"moderate"}]}</script></div> <script type="application/json" data-hypernova-key="doc_page" data-hypernova-id="32fc3e4b-7137-454c-b30c-2441c2c5e2c1"><!--{"assetEnvironment":"production","bodyProps":{"admin_panel_props":null,"breadcrumbs":[],"sharing_buttons_props":{"description":"Notes of css","id":692174977,"message":null,"private":false,"secretPassword":"wdIdO6cjlIJX0dmh5yRt","thumbnailUrl":"https://imgv2-1-f.scribdassets.com/img/document/692174977/original/c81ccd491d/1?v=1","title":"Unit I - Basics of JavaScript Programming_ForStudents","twitterHashtag":null,"url":"https://www.scribd.com/document/692174977/Unit-I-Basics-of-JavaScript-Programming-ForStudents"},"show_bot_text":true,"bot_text":"###BOT_TEXT###","view_restricted_cta_test_enabled":false},"currentPage":{"isHamburgerMenuOpen":false,"isMegamenuTopBarVisible":true,"isStatsigEnabled":true,"navigationCategories":{"academic":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"foreign-language-studies","name":"Foreign Language Studies","url":"https://www.scribd.com/docs/Foreign-Language-Studies","children":[{"dataName":"chinese","name":"Chinese","url":"https://www.scribd.com/docs/Foreign-Language-Studies/Chinese"},{"dataName":"esl","name":"ESL","url":"https://www.scribd.com/docs/Foreign-Language-Studies/ESL"}]},{"dataName":"science-mathematics","name":"Science & Mathematics","url":"https://www.scribd.com/docs/Science-Mathematics","children":[{"dataName":"astronomy-space-sciences","name":"Astronomy & Space Sciences","url":"https://www.scribd.com/docs/Science-Mathematics/Astronomy-Space-Sciences"},{"dataName":"biology","name":"Biology","url":"https://www.scribd.com/docs/Science-Mathematics/Biology"}]},{"dataName":"study-aids-test-prep","name":"Study Aids & Test Prep","url":"https://www.scribd.com/docs/Study-Aids-Test-Prep","children":[{"dataName":"book-notes","name":"Book Notes","url":"https://www.scribd.com/docs/Study-Aids-Test-Prep/Book-Notes"},{"dataName":"college-entrance-exams","name":"College Entrance Exams","url":"https://www.scribd.com/docs/Study-Aids-Test-Prep/College-Entrance-Exams"}]},{"dataName":"teaching-methods-materials","name":"Teaching Methods & Materials","url":"https://www.scribd.com/docs/Teaching-Methods-Materials","children":[{"dataName":"early-childhood-education","name":"Early Childhood Education","url":"https://www.scribd.com/docs/Teaching-Methods-Materials/Early-Childhood-Education"},{"dataName":"education-philosophy-theory","name":"Education Philosophy & Theory","url":"https://www.scribd.com/docs/Teaching-Methods-Materials/Education-Philosophy-Theory"}]}]},"professional":{"totalCategoryCount":21,"categoryLinks":[{"dataName":"business","name":"Business","url":"https://www.scribd.com/docs/Business","children":[{"dataName":"business-analytics","name":"Business Analytics","url":"https://www.scribd.com/docs/Business/Business-Analytics"},{"dataName":"human-resources-personnel-management","name":"Human Resources & Personnel Management","url":"https://www.scribd.com/docs/Business/Human-Resources-Personnel-Management"}]},{"dataName":"career-growth","name":"Career & Growth","url":"https://www.scribd.com/docs/Career-Growth","children":[{"dataName":"careers","name":"Careers","url":"https://www.scribd.com/docs/Career-Growth/Careers"},{"dataName":"job-hunting","name":"Job Hunting","url":"https://www.scribd.com/docs/Career-Growth/Job-Hunting"}]},{"dataName":"computers","name":"Computers","url":"https://www.scribd.com/docs/Computers","children":[{"dataName":"applications-software","name":"Applications & Software","url":"https://www.scribd.com/docs/Computers/Applications-Software"},{"dataName":"cad-cam","name":"CAD-CAM","url":"https://www.scribd.com/docs/Computers/CAD-CAM"}]},{"dataName":"finance-money-management","name":"Finance & Money Management","url":"https://www.scribd.com/docs/Finance-Money-Management","children":[{"dataName":"accounting-bookkeeping","name":"Accounting & Bookkeeping","url":"https://www.scribd.com/docs/Finance-Money-Management/Accounting-Bookkeeping"},{"dataName":"auditing","name":"Auditing","url":"https://www.scribd.com/docs/Finance-Money-Management/Auditing"}]},{"dataName":"law","name":"Law","url":"https://www.scribd.com/docs/Law","children":[{"dataName":"business-financial","name":"Business & Financial","url":"https://www.scribd.com/docs/Law/Business-Financial"},{"dataName":"contracts-agreements","name":"Contracts & Agreements","url":"https://www.scribd.com/docs/Law/Contracts-Agreements"}]},{"dataName":"politics","name":"Politics","url":"https://www.scribd.com/docs/Politics","children":[{"dataName":"american-government","name":"American Government","url":"https://www.scribd.com/docs/Politics/American-Government"},{"dataName":"international-relations","name":"International Relations","url":"https://www.scribd.com/docs/Politics/International-Relations"}]},{"dataName":"technology-engineering","name":"Technology & Engineering","url":"https://www.scribd.com/docs/Technology-Engineering","children":[{"dataName":"automotive","name":"Automotive","url":"https://www.scribd.com/docs/Technology-Engineering/Automotive"},{"dataName":"aviation-aeronautics","name":"Aviation & Aeronautics","url":"https://www.scribd.com/docs/Technology-Engineering/Aviation-Aeronautics"}]}]},"culture":{"totalCategoryCount":19,"categoryLinks":[{"dataName":"art","name":"Art","url":"https://www.scribd.com/docs/Art","children":[{"dataName":"antiques-collectibles","name":"Antiques & Collectibles","url":"https://www.scribd.com/docs/Art/Antiques-Collectibles"},{"dataName":"architecture","name":"Architecture","url":"https://www.scribd.com/docs/Art/Architecture"}]},{"dataName":"biography-memoir","name":"Biography & Memoir","url":"https://www.scribd.com/docs/Biography-Memoir","children":[{"dataName":"artists-and-musicians","name":"Artists and Musicians","url":"https://www.scribd.com/docs/Biography-Memoir/Artists-and-Musicians"},{"dataName":"entertainers-and-the-rich-famous","name":"Entertainers and the Rich & Famous","url":"https://www.scribd.com/docs/Biography-Memoir/Entertainers-and-the-Rich-Famous"}]},{"dataName":"comics-graphic-novels","name":"Comics & Graphic Novels","url":"https://www.scribd.com/docs/Comics-Graphic-Novels"},{"dataName":"history","name":"History","url":"https://www.scribd.com/docs/History","children":[{"dataName":"ancient","name":"Ancient","url":"https://www.scribd.com/docs/History/Ancient"},{"dataName":"modern","name":"Modern","url":"https://www.scribd.com/docs/History/Modern"}]},{"dataName":"philosophy","name":"Philosophy","url":"https://www.scribd.com/docs/Philosophy"},{"dataName":"language-arts-discipline","name":"Language Arts & Discipline","url":"https://www.scribd.com/docs/Language-Arts-Discipline","children":[{"dataName":"composition-creative-writing","name":"Composition & Creative Writing","url":"https://www.scribd.com/docs/Language-Arts-Discipline/Composition-Creative-Writing"},{"dataName":"linguistics","name":"Linguistics","url":"https://www.scribd.com/docs/Language-Arts-Discipline/Linguistics"}]},{"dataName":"literary-criticism","name":"Literary Criticism","url":"https://www.scribd.com/docs/Literary-Criticism"},{"dataName":"social-science","name":"Social Science","url":"https://www.scribd.com/docs/Social-Science","children":[{"dataName":"anthropology","name":"Anthropology","url":"https://www.scribd.com/docs/Social-Science/Anthropology"},{"dataName":"archaeology","name":"Archaeology","url":"https://www.scribd.com/docs/Social-Science/Archaeology"}]},{"dataName":"true-crime","name":"True Crime","url":"https://www.scribd.com/docs/True-Crime"}]},"hobbies_and_crafts":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"cooking-food-wine","name":"Cooking, Food & Wine","url":"https://www.scribd.com/docs/Cooking-Food-Wine","children":[{"dataName":"beverages","name":"Beverages","url":"https://www.scribd.com/docs/Cooking-Food-Wine/Beverages"},{"dataName":"courses-dishes","name":"Courses & Dishes","url":"https://www.scribd.com/docs/Cooking-Food-Wine/Courses-Dishes"}]},{"dataName":"games-activities","name":"Games & Activities","url":"https://www.scribd.com/docs/Games-Activities","children":[{"dataName":"card-games","name":"Card Games","url":"https://www.scribd.com/docs/Games-Activities/Card-Games"},{"dataName":"fantasy-sports","name":"Fantasy Sports","url":"https://www.scribd.com/docs/Games-Activities/Fantasy-Sports"}]},{"dataName":"home-garden","name":"Home & Garden","url":"https://www.scribd.com/docs/Home-Garden","children":[{"dataName":"crafts-hobbies","name":"Crafts & Hobbies","url":"https://www.scribd.com/docs/Home-Garden/Crafts-Hobbies"},{"dataName":"gardening","name":"Gardening","url":"https://www.scribd.com/docs/Home-Garden/Gardening"}]},{"dataName":"sports-recreation","name":"Sports & Recreation","url":"https://www.scribd.com/docs/Sports-Recreation","children":[{"dataName":"baseball","name":"Baseball","url":"https://www.scribd.com/docs/Sports-Recreation/Baseball"},{"dataName":"basketball","name":"Basketball","url":"https://www.scribd.com/docs/Sports-Recreation/Basketball"}]}]},"personal_growth":{"totalCategoryCount":12,"categoryLinks":[{"dataName":"lifestyle","name":"Lifestyle","url":"https://www.scribd.com/docs/Lifestyle","children":[{"dataName":"beauty-grooming","name":"Beauty & Grooming","url":"https://www.scribd.com/docs/Lifestyle/Beauty-Grooming"},{"dataName":"fashion","name":"Fashion","url":"https://www.scribd.com/docs/Lifestyle/Fashion"}]},{"dataName":"religion-spirituality","name":"Religion & Spirituality","url":"https://www.scribd.com/docs/Religion-Spirituality","children":[{"dataName":"buddhism","name":"Buddhism","url":"https://www.scribd.com/docs/Religion-Spirituality/Buddhism"},{"dataName":"christianity","name":"Christianity","url":"https://www.scribd.com/docs/Religion-Spirituality/Christianity"}]},{"dataName":"self-improvement","name":"Self-Improvement","url":"https://www.scribd.com/docs/Self-Improvement","children":[{"dataName":"addiction","name":"Addiction","url":"https://www.scribd.com/docs/Self-Improvement/Addiction"},{"dataName":"mental-health","name":"Mental Health","url":"https://www.scribd.com/docs/Self-Improvement/Mental-Health"}]},{"dataName":"wellness","name":"Wellness","url":"https://www.scribd.com/docs/Wellness","children":[{"dataName":"body-mind-spirit","name":"Body, Mind, & Spirit","url":"https://www.scribd.com/docs/Wellness/Body-Mind-Spirit"},{"dataName":"diet-nutrition","name":"Diet & Nutrition","url":"https://www.scribd.com/docs/Wellness/Diet-Nutrition"}]}]}},"scribdRebrand":true,"selectedMobileBottomTab":"document","serverTimestamp":"2025-05-03T20:16:00Z","statsigClientApiKey":"client-WIJd796Cwa4NdE0bYoaQFqBHKyK5Pj5Ct7uODQkwhKs","statsigEnvironmentTier":"production"},"enablePseudolocalization":false,"flashes":[],"global":{"client":{"mobile":{"getMobileAppProps":{"androidStoreUrl":"https://play.google.com/store/apps/details?id=com.scribd.app.reader0&hl=en","iosStoreUrl":"https://apps.apple.com/us/app/542557212","app_download_link":"https://www.scribd.com/send_download_link","close_promo_url":"https://www.scribd.com/home/close_promo","doc_id":692174977,"email_address":null,"extra_classes":"app_download_promo","promo_id":null,"twilio_enabled":false,"track_page":"doc_page","success":true,"__locale":"en_US"}}},"config":{"facebook":{"app_id":"136494494209"}},"testAssignments":{"backupPaymentMethodsRollout":null,"docPageMobileFrameworkV1":{"testName":"doc_page_mobile_framework_v1","variant":"control"},"personalized_archive_offer":"control","ask_ai_download":null},"paths":{"assetPath":"aHR0cHM6Ly9zLWYuc2NyaWJkYXNzZXRzLmNvbS8=\n","actions":{"add_to_library":"L3NhdmVkL2FkZA==\n","archive_plans_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz02OTIx\nNzQ5NzcmbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJkb3dubG9hZCUyMiUyQyUyMmxvZ2dlZF9p\nbiUyMiUzQWZhbHNlJTJDJTIycGxhdGZvcm0lMjIlM0ElMjJ3ZWIlMjIlN0Q=\n","audiobooksLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hdWRpb2Jvb2tz\n","bestsellers_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9iZXN0c2VsbGVycw==\n","book_annotations":"L2Jvb2tfYW5ub3RhdGlvbnMvNjkyMTc0OTc3\n","booksLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9ib29rcw==\n","documentsLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9kb2Nz\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy8=\n","homeLink":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS8=\n","library_url":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9zYXZlZA==\n","load_recommenders":"L2RvYy1wYWdlL3JlY29tbWVuZGVycy82OTIxNzQ5Nzc=\n","payment_fix":"L2FjY291bnQvcGF5bWVudF9wcm9maWxlX3VwZGF0ZQ==\n","payment_fix_url":null,"personalization_path":"L2RvYy1wYWdlL3BlcnNvbmFsaXphdGlvbg==\n","personalization_afa_path":"L2RvYy1wYWdlL2FmYQ==\n","pingback":["aA==\n","dA==\n","dA==\n","cA==\n","cw==\n","Og==\n","Lw==\n","Lw==\n","dw==\n","dw==\n","dw==\n","Lg==\n","cw==\n","Yw==\n","cg==\n","aQ==\n","Yg==\n","ZA==\n","Lg==\n","Yw==\n","bw==\n","bQ==\n","Lw==\n","ZA==\n","bw==\n","Yw==\n","dQ==\n","bQ==\n","ZQ==\n","bg==\n","dA==\n","cw==\n","Lw==\n","Ng==\n","OQ==\n","Mg==\n","MQ==\n","Nw==\n","NA==\n","OQ==\n","Nw==\n","Nw==\n","Lw==\n","cA==\n","aQ==\n","bg==\n","Zw==\n","Yg==\n","YQ==\n","Yw==\n","aw==\n"],"register_download_attempt":"L2RvY3VtZW50X2Rvd25sb2Fkcy9yZWdpc3Rlcl9kb3dubG9hZF9hdHRlbXB0\n","request_document_download":"L2RvY3VtZW50X2Rvd25sb2Fkcy9yZXF1ZXN0X2RvY3VtZW50X2Zvcl9kb3du\nbG9hZA==\n","remove_from_library":"L3NhdmVkL3JlbW92ZQ==\n","upload_url":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz02OTIxNzQ5Nzc=\n"},"props":{"download_receipt_modal":"L2RvYy1wYWdlL2Rvd25sb2FkLXJlY2VpcHQtbW9kYWwtcHJvcHMvNjkyMTc0\nOTc3\n","paused_user_download_modal":"L2RvYy1wYWdlL3BhdXNlZC11c2VyLWRvd25sb2FkLW1vZGFsLXByb3Bz\n","pmp_login_join_modal":"L2RvYy1wYWdlL3BtcC1sb2dpbi1qb2luLW1vZGFsLXByb3BzLzY5MjE3NDk3\nNw==\n"}},"features":{"desktopAdsExperience":null,"highlights":true,"isEligibleForPaidDesktopAds":false,"isEligibleForPaidMobileAds":false,"isEligibleForMobileAdsForAccess":false,"isEligibleForProgressiveProfileModal":false,"isEligibleForHouseAds":false,"showDocChatExperience":false,"taxonomyV4UgcBrowsing":true,"docChatAvailable":false}},"i18n":{"currentLanguage":{"prefix":"en","lcid":"en","href":"/language?id=en","lang":"en_US","name":"English"},"languages":[{"prefix":"en","lcid":"en","href":"/language?id=en","lang":"en_US","name":"English"},{"prefix":"es","lcid":"es","href":"/language?id=es","lang":"es-419","name":"Español"},{"prefix":"pt","lcid":"pt-br","href":"/language?id=pt-br","lang":"pt_BR","name":"Português"},{"prefix":"de","lcid":"de","href":"/language?id=de","lang":"de","name":"Deutsch"},{"prefix":"fr","lcid":"fr","href":"/language?id=fr","lang":"fr","name":"Français"},{"prefix":"ru","lcid":"ru","href":"/language?id=ru","lang":"ru_RU","name":"Русский"},{"prefix":"it","lcid":"it","href":"/language?id=it","lang":"it","name":"Italiano"},{"prefix":"ro","lcid":"ro","href":"/language?id=ro","lang":"ro_RO","name":"Română"},{"prefix":"id","lcid":"id","href":"/language?id=id","lang":"id_ID","name":"Bahasa Indonesia"}],"locale":"en-US"},"page":{"savedItems":{"692174977":false}},"personalization":{"trialDuration":null},"ratings":{"692174977":{"averageRating":0,"documentId":692174977,"downvoteCount":0,"ratingCount":0,"upvoteCount":0,"userRating":0}},"recommenders":{"viewport_bottom_recs":{"items":[{"id":261802634,"doc_uuid":"sbd/mJuKcJN9ReVG4MHhPUaXDww="},{"id":769435129,"doc_uuid":"sbd/0wsYAFfiMqNty3v3fOkmyu8="},{"id":853923681,"doc_uuid":"sbd/ZQO2DqxgzdiUnFA8W2vZV5w="},{"id":747255157,"doc_uuid":"sbd/UOgkhMqZOjK79WYGtePHn8I="},{"id":800882943,"doc_uuid":"sbd/SiSLiFUz8lxLBL/1Xnxxo8k="},{"id":546022830,"doc_uuid":"sbd/CwGOyeQh2e754V7rFwaXkwg="},{"id":851808624,"doc_uuid":"sbd/UEsfZ/zi/inEPP9XSdIB3GA="},{"id":758373705,"doc_uuid":"sbd/9DjRIXvwd1myDlLOE2sgm68="},{"id":772481160,"doc_uuid":"sbd/K1TOi8BXs0DT7pSUqArpYew="},{"id":809796007,"doc_uuid":"sbd/XGwPl8Z7Mqcn9Ozyf2GaYEI="},{"id":414159522,"doc_uuid":"sbd/PtcC3aoQgIS8HwL6xOzqWd0="},{"id":342682379,"doc_uuid":"sbd/exGlkaEbaxUL0rCg1/g0L2s="},{"id":517499225,"doc_uuid":"sbd/EMK5KhoydYAJFBPGiuICtfE="},{"id":482317883,"doc_uuid":"sbd/DgxLuTNutIztHpYC0uF2uNY="},{"id":746030433,"doc_uuid":"sbd/5QAZvjEVIQtlta7AUam6xjM="},{"id":712966631,"doc_uuid":"sbd/WFHYEBCAr549refZllBsbT0="},{"id":694817687,"doc_uuid":"sbd/xkED1vvpHEiHwhGM9fsDDeM="},{"id":831757988,"doc_uuid":"sbd/I7FPtdBNnHzH9RjSiRbLxmM="},{"id":473590298,"doc_uuid":"sbd/FyxLuYjmUhLhsyeLYvHhqH8="},{"id":788348031,"doc_uuid":"sbd/jaJkARhM4LEfaLJj5OAGLVQ="},{"id":691878065,"doc_uuid":"sbd/YkukjTesODas2jUIkV7AsRM="},{"id":434139112,"doc_uuid":"sbd/9ZDgQOk1p2mXTpgFbgEm5ds="},{"id":845818953,"doc_uuid":"sbd/aqTxOxS1c48aO1PgBfJciZk="},{"id":848282879,"doc_uuid":"sbd/M/AvXAlWZbT9phnMMHaSZCY="},{"id":727968048,"doc_uuid":"sbd/uCF8AqJcDOLh5bTUW54kLBA="},{"id":685362394,"doc_uuid":"sbd/xV278cI8St46nnzkeCscD9M="},{"id":698300749,"doc_uuid":"sbd/llX1X/FAsi8P9nb9L/T2SYE="},{"id":821575709,"doc_uuid":"sbd/qfQ0fDH4fzGvHu3lj50awF0="},{"id":753898698,"doc_uuid":"sbd/nVvCTYvNRQ1LJhFP869kcH8="},{"id":847926250,"doc_uuid":"sbd/L4t5WJOCAVmldodfo8ZK7xU="},{"id":838971253,"doc_uuid":"sbd/JbW6TVy220E859R9vKJWBhI="},{"id":793131024,"doc_uuid":"sbd/U1XVQ/vMW2psAox36QhNGR8="},{"id":810114140,"doc_uuid":"sbd/fW609NaJVP91OsjdtPeO5a8="},{"id":783210993,"doc_uuid":"sbd/sIjgceNBvHskK3lffz5iOWc="},{"id":847934867,"doc_uuid":"sbd/j3pQwPPL2Fh241j4VOI3rZc="},{"id":283181244,"doc_uuid":"sbd/mDpaG5b23RAQEe0mrK5HYgc="},{"id":776775607,"doc_uuid":"sbd/nopcIQ5HpZXAPTrAaq1v0iI="},{"id":724820431,"doc_uuid":"sbd/iAA7gHpNpi3O3fi1MarlmGU="},{"id":743769170,"doc_uuid":"sbd/1p/TICMcVrQcxUZuTYa64Xs="},{"id":217423134,"doc_uuid":"sbd/sOUGC1zHOenXILLnXKSYLGk="},{"id":648626674,"doc_uuid":"sbd/Zc7/vNyR5KTOBkzD8ZWCErw="},{"id":747192992,"doc_uuid":"sbd/rd7Qjf/mnCmjhyk7MxrA4no="},{"id":155245337,"doc_uuid":"sbd/YMHu3qhEUaTB6YvPl5lTqAA="},{"id":641067213,"doc_uuid":"sbd/61XfeLv4Hd6rlZqsnVcnK1o="},{"id":723878841,"doc_uuid":"sbd/lOGhfve8LHQcZkLlcNSrlLQ="},{"id":657546713,"doc_uuid":"sbd/wgAx1s8j1lnzQO11FZEJMvY="},{"id":360491798,"doc_uuid":"sbd/vLbRBMK9DzUpS9hRhyAfxqA="},{"id":619858635,"doc_uuid":"sbd/XSqc/J9mZfOYpwR7eQHDYcg="},{"id":830420211,"doc_uuid":"sbd/A/t2D4q/CdSutZ3utRwSWdQ="},{"id":142816756,"doc_uuid":"sbd/y5cq7pL4vEfU1ZJQsPxO1mI="},{"id":753839630,"doc_uuid":"sbd/7qwjV3c5rBZPUjJzsYtuCFo="}],"ids":[261802634,769435129,853923681,747255157,800882943,546022830,851808624,758373705,772481160,809796007,414159522,342682379,517499225,482317883,746030433,712966631,694817687,831757988,473590298,788348031,691878065,434139112,845818953,848282879,727968048,685362394,698300749,821575709,753898698,847926250,838971253,793131024,810114140,783210993,847934867,283181244,776775607,724820431,743769170,217423134,648626674,747192992,155245337,641067213,723878841,657546713,360491798,619858635,830420211,142816756,753839630],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/7dzNJHhwwsFfry5pmXs0PA0=","module_id":"sbd/dwgCucEaWrKUerHWczxy4RA=","widget_name":"viewport_bottom","track_id":"scroll_recs"}},"list_recommenders":{"items":[{"id":261802634,"doc_uuid":"sbd/WujUGhRBJ7p3qpLwnbPRfW4="},{"id":769435129,"doc_uuid":"sbd/HURYvB5er8Wujj9EiHxHGzs="},{"id":853923681,"doc_uuid":"sbd/MRKjM2QFflPDxl73NlgCse4="},{"id":747255157,"doc_uuid":"sbd/BMg0LrEJCRLVZF/uoVQ3QK8="},{"id":800882943,"doc_uuid":"sbd/l6qulV5oir9ytbF4Pzg3Qzg="},{"id":546022830,"doc_uuid":"sbd/IqtkH4LENMzsFKxLNisTyFE="},{"id":851808624,"doc_uuid":"sbd/Vm0bY/SMvzyB4uOGykyLQDc="},{"id":758373705,"doc_uuid":"sbd/PLQBwd/oUAv0sWYBIEPHZmg="},{"id":772481160,"doc_uuid":"sbd/QedFJsVMckxvH8TQ4yAy1ZY="},{"id":809796007,"doc_uuid":"sbd/LdT7h4Qq9xhKSCn64Urgy2c="},{"id":414159522,"doc_uuid":"sbd/d8qGLFhzPJwV49aZ48vz6u0="},{"id":342682379,"doc_uuid":"sbd/dRSQSQ5lFu2r7FCmY1UKgT4="},{"id":517499225,"doc_uuid":"sbd/n3xE34cf0HMqSBvbgxL6pQI="},{"id":482317883,"doc_uuid":"sbd/xL/Jd0XUAuftBUNlJjYI8SM="},{"id":746030433,"doc_uuid":"sbd/aF3kWnNcSjdiqNpnnaeRyGM="},{"id":712966631,"doc_uuid":"sbd/YbYLv/mK5mcrfE8JULBHrAA="},{"id":694817687,"doc_uuid":"sbd//nlnXh16wXsePT/DMnVkpRI="},{"id":831757988,"doc_uuid":"sbd/VH4UoExEm5acObm8XgEdwfo="},{"id":473590298,"doc_uuid":"sbd/wX8qbJiyGr8SrJJmWFXRE5E="},{"id":788348031,"doc_uuid":"sbd/rFm7P2QivBuDvrjpelcAvnk="},{"id":691878065,"doc_uuid":"sbd/FF3DwmmiARZcADdeHImWFh4="},{"id":434139112,"doc_uuid":"sbd/QW/ExlbLIFGST2eRNgElu1o="},{"id":845818953,"doc_uuid":"sbd/PVVIkzviwEkWcxs1Pij2B8U="},{"id":848282879,"doc_uuid":"sbd/hce/7wHuNTNzS45HceVe1gE="},{"id":727968048,"doc_uuid":"sbd/Aj8APJlIW1eBrHTFUf7Vm4M="},{"id":685362394,"doc_uuid":"sbd/ODxfO5sH5RbC8AjDw3dycM0="},{"id":698300749,"doc_uuid":"sbd/39cspQxo377RHUNfCVK3a70="},{"id":821575709,"doc_uuid":"sbd/zixHfj/ZYh7ger2Yf4GwSyk="},{"id":753898698,"doc_uuid":"sbd/wilO2gVXDQwBFsZgH69Jpag="},{"id":847926250,"doc_uuid":"sbd/u4yERvoYYk2e7L1cEagJ5M4="},{"id":838971253,"doc_uuid":"sbd/eqzNS0xNOuuhnk33LgZTrD8="},{"id":793131024,"doc_uuid":"sbd/Ul8nvixcpCN77dm90xX4SX8="},{"id":810114140,"doc_uuid":"sbd/7kS/2EgfmgUyh7/nEQovlbk="},{"id":783210993,"doc_uuid":"sbd/Bvb2Bhwhf/mgP8xwBZg8Zyo="},{"id":847934867,"doc_uuid":"sbd/HZcBfxCUMFNID7bRSS8l5Hw="},{"id":283181244,"doc_uuid":"sbd/uOGWLlCw/TUDiVU6n/xT6yY="},{"id":776775607,"doc_uuid":"sbd/dygrutpLfwR0cSuw6B99/AA="},{"id":724820431,"doc_uuid":"sbd/uQrnkFeNbfqh29mgkUF6B8w="},{"id":743769170,"doc_uuid":"sbd/be3bikp1myZzwvSLnvFDVFI="},{"id":217423134,"doc_uuid":"sbd/PtolA9NghNO62N0cnEfqdO4="},{"id":648626674,"doc_uuid":"sbd/Yz9JxY7rwTSkXCruO2PQkVw="},{"id":747192992,"doc_uuid":"sbd/stKmz6rVEGBBywP2yperrkg="},{"id":155245337,"doc_uuid":"sbd/sLNkQxheB4mTA5na7FP1wPo="},{"id":641067213,"doc_uuid":"sbd/84LmfI26VfXGq4ikJ45MKYQ="},{"id":723878841,"doc_uuid":"sbd/CQk8s2SsznU/up9OFCWcunA="},{"id":657546713,"doc_uuid":"sbd/uh52md89ZUwHqAtyoze9Vfo="},{"id":360491798,"doc_uuid":"sbd/7jrhEP10mPkuz45f3o732TE="},{"id":619858635,"doc_uuid":"sbd/vY5v9I1Kkzxrs9lfRwXCf8A="},{"id":830420211,"doc_uuid":"sbd/roaWO/tL4hLVQHGgMkJgQj4="},{"id":142816756,"doc_uuid":"sbd/ZYWsw8tLY1/0JyGn4FSnaFY="},{"id":753839630,"doc_uuid":"sbd/EdGJrOehSU6s4C2BsfDlx9k="}],"ids":[261802634,769435129,853923681,747255157,800882943,546022830,851808624,758373705,772481160,809796007,414159522,342682379,517499225,482317883,746030433,712966631,694817687,831757988,473590298,788348031,691878065,434139112,845818953,848282879,727968048,685362394,698300749,821575709,753898698,847926250,838971253,793131024,810114140,783210993,847934867,283181244,776775607,724820431,743769170,217423134,648626674,747192992,155245337,641067213,723878841,657546713,360491798,619858635,830420211,142816756,753839630],"title_link":null,"title":null,"track_opts":{"compilation_id":"sbd/7dzNJHhwwsFfry5pmXs0PA0=","module_id":"sbd/buNWIEVtcrtHBCiI9R0hqk4=","widget_name":"recommender_list","track_id":"doc_page_user_experience_top"}},"documents":{"142816756":{"author":"nbaliba","author_url":"https://www.scribd.com/user/223026075/nbaliba","categories":[],"description":"Javascript Tutorial pdf file","id":142816756,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":39,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/142816756/298x396/74c2aab6d8/1369163423?v=1","run_time":0,"short_title":"Javascript Tutorial","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/142816756/149x198/560dabb58c/1369163423?v=1","title":"Javascript Tutorial","type":"document","url":"https://www.scribd.com/document/142816756/Javascript-Tutorial","views":"97"},"155245337":{"author":"pavanjammula","author_url":"https://www.scribd.com/user/18146777/pavanjammula","categories":[],"description":"with Examples","id":155245337,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":27,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/155245337/298x396/3db0cb6fd3/1446794602?v=1","run_time":0,"short_title":"Javascript Notes","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/155245337/149x198/4cdae23af5/1446794602?v=1","title":"Javascript Notes","type":"document","url":"https://www.scribd.com/document/155245337/Javascript-Notes","views":"82"},"217423134":{"author":"hagdinclooble","author_url":"https://www.scribd.com/user/251892957/hagdinclooble","categories":[],"description":"Javascript Lecture","id":217423134,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":61,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/217423134/298x396/a7d4e1c57e/1421889031?v=1","run_time":0,"short_title":"Java Script","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/217423134/149x198/15a5556092/1421889031?v=1","title":"Java Script: - CGI (Common Gateway Interface) Programs","type":"document","url":"https://www.scribd.com/doc/217423134/Javascript-Lecture","views":"260"},"261802634":{"author":"Rishish Jain","author_url":"https://www.scribd.com/user/52065130/Rishish-Jain","categories":[],"description":"Java Script in Mirth","id":261802634,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":39,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/261802634/298x396/38b7ead67d/1428991663?v=1","run_time":0,"short_title":"Java Script in Mirth","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/261802634/149x198/b57f4f10c8/1428991663?v=1","title":"Java Script in Mirth","type":"document","url":"https://www.scribd.com/document/261802634/Java-Script-in-Mirth","views":"1.8K"},"283181244":{"author":"divya","author_url":"https://www.scribd.com/user/296453397/divya","categories":[],"description":"Basics of javaScript ppt for unit 3 as per VTU syllabus from programming the www - robert w sebesta","id":283181244,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":62,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/283181244/298x396/5fd097293e/1734602572?v=1","run_time":0,"short_title":"Unit3-Basics of JavaScript","static_rating":{"rating":3.5,"count":5,"up_count":3},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/283181244/149x198/17254283dc/1734602572?v=1","title":"Unit3-Basics of JavaScript","type":"document","url":"https://www.scribd.com/presentation/283181244/unit3-Basics-of-JavaScript-ppt","views":"17K"},"342682379":{"author":"obiwan xeon","author_url":"https://www.scribd.com/user/329819661/obiwan-xeon","categories":[],"description":"JAVASCRIPT","id":342682379,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":26,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/342682379/298x396/7faeb0514b/1490180225?v=1","run_time":0,"short_title":"Javascript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/342682379/149x198/77a9031934/1490180225?v=1","title":"Javascript","type":"document","url":"https://www.scribd.com/document/342682379/Javascript","views":"147"},"360491798":{"author":"Shishir Kant Singh","author_url":"https://www.scribd.com/user/44532674/Shishir-Kant-Singh","categories":[],"description":"SEED Group","id":360491798,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":40,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/360491798/298x396/0505fbf83a/1507079924?v=1","run_time":0,"short_title":"Java Script","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/360491798/149x198/80d188049d/1507079924?v=1","title":"Java Script","type":"document","url":"https://www.scribd.com/document/360491798/JavaScript","views":"566"},"414159522":{"author":"raheel ahmad","author_url":"https://www.scribd.com/user/465367140/raheel-ahmad","categories":[],"description":"htyb","id":414159522,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/414159522/298x396/9b4eceaf75/1561200338?v=1","run_time":0,"short_title":"CS101 Introduction To Computing","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/414159522/149x198/42ce4922dd/1561200338?v=1","title":"CS101 Introduction To Computing: (Web Development Lecture 7)","type":"document","url":"https://www.scribd.com/document/414159522/Cs101-Lec21","views":"120"},"434139112":{"author":"content writers","author_url":"https://www.scribd.com/user/469710202/content-writers","categories":[],"description":"Javascript reasearch based on various websites.","id":434139112,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":15,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/434139112/298x396/1dbd290ab7/1573311023?v=1","run_time":0,"short_title":"X, Y, Z X Y Z X + Y ","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/434139112/149x198/987c6b032c/1573311023?v=1","title":"X, Y, Z X Y Z X + Y : 1. What Is Javascript?Features of Javascript, What Is Javascript Syntax?","type":"document","url":"https://www.scribd.com/document/434139112/JAVASCRIPT","views":"49"},"473590298":{"author":"Naveed Shah","author_url":"https://www.scribd.com/user/36524286/Naveed-Shah","categories":[],"description":"","id":473590298,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":24,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/473590298/298x396/2b034146e7/1710545944?v=1","run_time":0,"short_title":"Web Engineering Javascript (Part 1) ","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/473590298/149x198/749f1795fa/1710545944?v=1","title":"Web Engineering Javascript (Part 1) : Muhammad Umair Naru Department of Computer Science","type":"document","url":"https://www.scribd.com/document/473590298/06-JavaScript-1","views":"49"},"482317883":{"author":"Rohit Bhardwaj","author_url":"https://www.scribd.com/user/364253804/Rohit-Bhardwaj","categories":[],"description":"","id":482317883,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":39,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/482317883/298x396/11a48a05b3/1710563168?v=1","run_time":0,"short_title":"UI/UX Presentation6","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/482317883/149x198/1f6b15d9f0/1710563168?v=1","title":"UI/UX Presentation6","type":"document","url":"https://www.scribd.com/document/482317883/UI-UX-presentation6","views":"56"},"517499225":{"author":"Wanjiru Ian Sampaiyo Maloi","author_url":"https://www.scribd.com/user/557269651/Wanjiru-Ian-Sampaiyo-Maloi","categories":[],"description":"notes ibp","id":517499225,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":12,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/517499225/298x396/9a1e4d4968/1741121324?v=1","run_time":0,"short_title":"Javascript Introduction Notes","static_rating":{"rating":5,"count":1,"up_count":1},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/517499225/149x198/0d834324db/1741121324?v=1","title":"Javascript Introduction Notes","type":"document","url":"https://www.scribd.com/document/517499225/JAVASCRIPT-INTRODUCTION-NOTES","views":"6.8K"},"546022830":{"author":"467-056 Chandana","author_url":"https://www.scribd.com/user/548323875/467-056-Chandana","categories":[],"description":"","id":546022830,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":24,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/546022830/298x396/2a77ba8c9e/1710543099?v=1","run_time":0,"short_title":"Unit-Iv/ Chapter - Xi Learning Javascript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/546022830/149x198/cab3cc9a9b/1710543099?v=1","title":"Unit-Iv/ Chapter - Xi Learning Javascript","type":"document","url":"https://www.scribd.com/document/546022830/js11-docx","views":"43"},"619858635":{"author":"103-abhijit arote","author_url":"https://www.scribd.com/user/649341576/103-abhijit-arote","categories":[],"description":null,"id":619858635,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/619858635/298x396/5ddfe23cb2/1673788930?v=1","run_time":0,"short_title":"Unit-1 Basics of JavaScript Programming","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/619858635/149x198/c2ded7ff00/1673788930?v=1","title":"Unit-1 Basics of JavaScript Programming","type":"document","url":"https://www.scribd.com/document/619858635/Unit-1-Basics-of-JavaScript-Programming-1","views":"1.0K"},"641067213":{"author":"Yash Tyagi","author_url":"https://www.scribd.com/user/587231534/Yash-Tyagi","categories":[],"description":"","id":641067213,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":17,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/641067213/298x396/666b43008a/1710592530?v=1","run_time":0,"short_title":"WT Unit-3.1 Javascript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/641067213/149x198/c0ffb7a180/1710592530?v=1","title":"WT Unit-3.1 Javascript","type":"document","url":"https://www.scribd.com/document/641067213/WT-UNIT-3-1-JAVASCRIPT","views":"69"},"648626674":{"author":"Rahul bathri","author_url":"https://www.scribd.com/user/390607832/Rahul-bathri","categories":[],"description":"","id":648626674,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":39,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/648626674/298x396/89494b554c/1710539602?v=1","run_time":0,"short_title":"Javascript Tutorial Point","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/648626674/149x198/251d409b91/1710539602?v=1","title":"Javascript Tutorial Point","type":"document","url":"https://www.scribd.com/document/648626674/javascript-tutorial-Point","views":"128"},"657546713":{"author":"anamika soodh","author_url":"https://www.scribd.com/user/677789680/anamika-soodh","categories":[],"description":"gfvdsbgfhgf","id":657546713,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":38,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/657546713/298x396/e31616e995/1710525616?v=1","run_time":0,"short_title":"Js Intro","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/657546713/149x198/62b279d9f0/1710525616?v=1","title":"Js Intro","type":"document","url":"https://www.scribd.com/document/657546713/js-intro","views":"20K"},"685362394":{"author":"Shrawani Dongre","author_url":"https://www.scribd.com/user/660120709/Shrawani-Dongre","categories":[],"description":"","id":685362394,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/685362394/298x396/bb77dacf87/1710522848?v=1","run_time":0,"short_title":"Unit-1 Basics of JavaScript Programming","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/685362394/149x198/e3cba53642/1710522848?v=1","title":"Unit-1 Basics of JavaScript Programming","type":"document","url":"https://www.scribd.com/document/685362394/Unit-1-Basics-Of-JavaScript-Programming","views":"35"},"691878065":{"author":"Khushi Pachauri","author_url":"https://www.scribd.com/user/466704025/Khushi-Pachauri","categories":[],"description":null,"id":691878065,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":92,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/691878065/298x396/376c327383/1702391968?v=1","run_time":0,"short_title":"JavaScript (Unit-3) Part 1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/691878065/149x198/765b0f57fc/1702391968?v=1","title":"JavaScript (Unit-3) Part 1","type":"document","url":"https://www.scribd.com/document/691878065/JavaScript-Unit-3-Part-1","views":"56"},"694817687":{"author":"Jyoti Bhatt","author_url":"https://www.scribd.com/user/484413366/Jyoti-Bhatt","categories":[],"description":null,"id":694817687,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":37,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/694817687/298x396/8f3eec768b/1703577884?v=1","run_time":0,"short_title":"Introduction To JavaScript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/694817687/149x198/873b38d643/1703577884?v=1","title":"Introduction To JavaScript","type":"document","url":"https://www.scribd.com/presentation/694817687/Introduction-to-JavaScript","views":"51"},"698300749":{"author":"blinak77","author_url":"https://www.scribd.com/user/716957978/blinak77","categories":[],"description":"Hi hope you like it I just wanted to let you know that I am going to be in the office today","id":698300749,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":19,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/698300749/298x396/9f2718d891/1710548228?v=1","run_time":0,"short_title":"Javascript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/698300749/149x198/88c217b2d0/1710548228?v=1","title":"Javascript","type":"document","url":"https://www.scribd.com/document/698300749/javascript","views":"24"},"712966631":{"author":"speedfood","author_url":"https://www.scribd.com/user/731881807/speedfood","categories":[],"description":"","id":712966631,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":23,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/712966631/298x396/71df6f86ce/1710313969?v=1","run_time":0,"short_title":"JavaScript Document","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/712966631/149x198/c65fb9a9b3/1710313969?v=1","title":"JavaScript Document","type":"document","url":"https://www.scribd.com/document/712966631/JavaScript-Document","views":"23"},"723878841":{"author":"philmichangel.2930","author_url":"https://www.scribd.com/user/702168524/philmichangel-2930","categories":[],"description":null,"id":723878841,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":142,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/723878841/298x396/1572b56e54/1713343242?v=1","run_time":0,"short_title":"Java Script","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/723878841/149x198/5f51400c2a/1713343242?v=1","title":"Java Script","type":"document","url":"https://www.scribd.com/document/723878841/JavaScript","views":"83"},"724820431":{"author":"mewahin569","author_url":"https://www.scribd.com/user/741802849/mewahin569","categories":[],"description":"","id":724820431,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":166,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/724820431/298x396/c4567e1f21/1713578868?v=1","run_time":0,"short_title":"Mean Stack","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/724820431/149x198/9ac3fd9ef6/1713578868?v=1","title":"Mean Stack","type":"document","url":"https://www.scribd.com/document/724820431/mean-stack","views":"41"},"727968048":{"author":"21Siddhi Doke","author_url":"https://www.scribd.com/user/609814613/21Siddhi-Doke","categories":[],"description":"","id":727968048,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":31,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/727968048/298x396/7e0b24c58d/1714459483?v=1","run_time":0,"short_title":"Unit I PPT CSS 1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/727968048/149x198/b5b4bc72fc/1714459483?v=1","title":"Unit I PPT CSS 1","type":"document","url":"https://www.scribd.com/document/727968048/Unit-I-PPT-CSS-1","views":"33"},"743769170":{"author":"rahulnakka74","author_url":"https://www.scribd.com/user/713091857/rahulnakka74","categories":[],"description":"css","id":743769170,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":35,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/743769170/298x396/4a549286b5/1718878740?v=1","run_time":0,"short_title":"Java Script","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/743769170/149x198/5ed4d17778/1718878740?v=1","title":"Java Script: Variables &scope, Data Types, Control Structures, Array Methods","type":"document","url":"https://www.scribd.com/document/743769170/1-2","views":"9"},"746030433":{"author":"innosamwel445","author_url":"https://www.scribd.com/user/762076915/innosamwel445","categories":[],"description":null,"id":746030433,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":50,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/746030433/298x396/784a0ead12/1719530562?v=1","run_time":0,"short_title":"Website JavaScript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/746030433/149x198/aee6130250/1719530562?v=1","title":"Website JavaScript","type":"document","url":"https://www.scribd.com/presentation/746030433/Website-JavaScript","views":"5"},"747192992":{"author":"princeawan092","author_url":"https://www.scribd.com/user/763153417/princeawan092","categories":[],"description":"","id":747192992,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":30,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/747192992/298x396/dfb08e3ee1/1719896596?v=1","run_time":0,"short_title":"Javascript Tutorial","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/747192992/149x198/f88b48fa18/1719896596?v=1","title":"Javascript Tutorial","type":"document","url":"https://www.scribd.com/document/747192992/javascript-tutorial","views":"18"},"747255157":{"author":"sharvari dhokte","author_url":"https://www.scribd.com/user/644643311/sharvari-dhokte","categories":[],"description":"CSS chapter 1 overall","id":747255157,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":26,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/747255157/298x396/48b9ebc587/1719917079?v=1","run_time":0,"short_title":"CSS Chapter 1 Overall","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/747255157/149x198/f512a776a6/1719917079?v=1","title":"CSS Chapter 1 Overall","type":"document","url":"https://www.scribd.com/document/747255157/CSS-chapter-1-overall","views":"7"},"753839630":{"author":"snehalparab183","author_url":"https://www.scribd.com/user/737159244/snehalparab183","categories":[],"description":"","id":753839630,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":116,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/753839630/298x396/e17ab65ada/1722080464?v=1","run_time":0,"short_title":"Module 2","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/753839630/149x198/6247ccfbbc/1722080464?v=1","title":"Module 2","type":"document","url":"https://www.scribd.com/presentation/753839630/Module-2","views":"7"},"753898698":{"author":"shwetank7744","author_url":"https://www.scribd.com/user/769904794/shwetank7744","categories":[],"description":"","id":753898698,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":21,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/753898698/298x396/a4edde855e/1722100529?v=1","run_time":0,"short_title":"1 JS Intro Opr DT Var (Unit 3)","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/753898698/149x198/7423bb5248/1722100529?v=1","title":"1 JS Intro Opr DT Var (Unit 3)","type":"document","url":"https://www.scribd.com/document/753898698/1-JS-Intro-opr-dt-var-unit-3-Copy","views":"12"},"758373705":{"author":"pagarmayureshanil","author_url":"https://www.scribd.com/user/731701601/pagarmayureshanil","categories":[],"description":null,"id":758373705,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":67,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/758373705/298x396/6a73e4af83/1723483396?v=1","run_time":0,"short_title":"Unit I Basics of Java Script Programming","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/758373705/149x198/fd0beeeaca/1723483396?v=1","title":"Unit I Basics of Java Script Programming","type":"document","url":"https://www.scribd.com/document/758373705/Unit-I-Basics-of-Java-Script-Programming","views":"10"},"769435129":{"author":"sunnygaikwad4747","author_url":"https://www.scribd.com/user/769656735/sunnygaikwad4747","categories":[],"description":"notes","id":769435129,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":27,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/769435129/298x396/8c8d46e219/1726417049?v=1","run_time":0,"short_title":"Unit I - Basics of JavaScript Programming.","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/769435129/149x198/5ec18c0814/1726417049?v=1","title":"Unit I - Basics of JavaScript Programming.","type":"document","url":"https://www.scribd.com/document/769435129/Unit-I-Basics-of-JavaScript-Programming","views":"14"},"772481160":{"author":"Endale","author_url":"https://www.scribd.com/user/556925771/Endale","categories":[],"description":"basic note ON javascript","id":772481160,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":9,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/772481160/298x396/417d125943/1727176951?v=1","run_time":0,"short_title":"Javascript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/772481160/149x198/6221ab02b7/1727176951?v=1","title":"Javascript","type":"document","url":"https://www.scribd.com/document/772481160/Javascript","views":"19"},"776775607":{"author":"Hsu Myat","author_url":"https://www.scribd.com/user/606028730/Hsu-Myat","categories":[],"description":"Read me","id":776775607,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":5,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/776775607/298x396/617f418c90/1728201410?v=1","run_time":0,"short_title":"Unit 5 Read Me","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/776775607/149x198/b0f8fa51fc/1728201410?v=1","title":"Unit 5 Read Me","type":"document","url":"https://www.scribd.com/document/776775607/Unit-5-Read-me","views":"0"},"783210993":{"author":"tejasshelake20","author_url":"https://www.scribd.com/user/798581504/tejasshelake20","categories":[],"description":null,"id":783210993,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":78,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/783210993/298x396/fcdceb171d/1729653492?v=1","run_time":0,"short_title":"Unit 2","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/783210993/149x198/157d7f7530/1729653492?v=1","title":"Unit 2","type":"document","url":"https://www.scribd.com/presentation/783210993/Unit-2","views":"12"},"788348031":{"author":"garyvee366","author_url":"https://www.scribd.com/user/776452270/garyvee366","categories":[],"description":null,"id":788348031,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":199,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/788348031/298x396/e9ad2311d7/1730819768?v=1","run_time":0,"short_title":"Javascript Mod3","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/788348031/149x198/9fbd4a3063/1730819768?v=1","title":"Javascript Mod3","type":"document","url":"https://www.scribd.com/document/788348031/Javascript-Mod3","views":"16"},"793131024":{"author":"ranesanskar70","author_url":"https://www.scribd.com/user/701666914/ranesanskar70","categories":[],"description":"Css unit 1-6 by sanskar Rane","id":793131024,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":68,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/793131024/298x396/0b7668ec1b/1731786333?v=1","run_time":0,"short_title":"CSS Unit 1-6","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/793131024/149x198/ddbb4d22c5/1731786333?v=1","title":"CSS Unit 1-6","type":"document","url":"https://www.scribd.com/presentation/793131024/CSS-Unit-1-6","views":"9"},"800882943":{"author":"Shlok Chaudhari","author_url":"https://www.scribd.com/user/640896823/Shlok-Chaudhari","categories":[],"description":"Css notes 22519 chapter 1","id":800882943,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":19,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/800882943/298x396/43fbd1a7c1/1733366804?v=1","run_time":0,"short_title":"msbte campus css unit 1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/800882943/149x198/888f8cbbe0/1733366804?v=1","title":"msbte campus css unit 1","type":"document","url":"https://www.scribd.com/document/800882943/msbte-campus-css-unit-1","views":"38"},"809796007":{"author":"Chiliveri Ajay","author_url":"https://www.scribd.com/user/568497738/Chiliveri-Ajay","categories":[],"description":null,"id":809796007,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":29,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/809796007/298x396/982cbb7772/1735536307?v=1","run_time":0,"short_title":"Js Ppt-converted (1)","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/809796007/149x198/da596a0e4f/1735536307?v=1","title":"Js Ppt-converted (1)","type":"document","url":"https://www.scribd.com/document/809796007/Js-Ppt-converted-1","views":"97"},"810114140":{"author":"farazliaqat304","author_url":"https://www.scribd.com/user/821842013/farazliaqat304","categories":[],"description":null,"id":810114140,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":55,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/810114140/298x396/eaf505f536/1735620399?v=1","run_time":0,"short_title":"Week 3","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/810114140/149x198/88f525b874/1735620399?v=1","title":"Week 3","type":"document","url":"https://www.scribd.com/presentation/810114140/Week-3","views":"5"},"821575709":{"author":"ravishankars1969","author_url":"https://www.scribd.com/user/832172556/ravishankars1969","categories":[],"description":null,"id":821575709,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":88,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/821575709/298x396/336ca740d0/1738168190?v=1","run_time":0,"short_title":"Module2 Javascript.ppt","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/821575709/149x198/caca872efa/1738168190?v=1","title":"Module2 Javascript.ppt","type":"document","url":"https://www.scribd.com/presentation/821575709/Module2-Javascript-ppt","views":"4"},"830420211":{"author":"20131A5327 KONDETI SHIVA NARASIMHA","author_url":"https://www.scribd.com/user/586055930/20131A5327-KONDETI-SHIVA-NARASIMHA","categories":[],"description":null,"id":830420211,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":86,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/830420211/298x396/b85a67652b/1740035423?v=1","run_time":0,"short_title":"Unit-5 Java Script Minors","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/830420211/149x198/08f1ecb18f/1740035423?v=1","title":"Unit-5 Java Script Minors","type":"document","url":"https://www.scribd.com/document/830420211/Unit-5-Java-Script-Minors","views":"4"},"831757988":{"author":"mashhsk","author_url":"https://www.scribd.com/user/798786855/mashhsk","categories":[],"description":"JavaScript","id":831757988,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":71,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/831757988/298x396/4d75393c76/1740333880?v=1","run_time":0,"short_title":"Javascript-1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/831757988/149x198/a21c67e6af/1740333880?v=1","title":"Javascript-1","type":"document","url":"https://www.scribd.com/document/831757988/Javascript-1","views":"4"},"838971253":{"author":"Shimaa Said","author_url":"https://www.scribd.com/user/628099636/Shimaa-Said","categories":[],"description":"","id":838971253,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":28,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/838971253/298x396/f640b5d0bd/1741904611?v=1","run_time":0,"short_title":"Session1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/838971253/149x198/13097c886a/1741904611?v=1","title":"Session1","type":"document","url":"https://www.scribd.com/document/838971253/Session1","views":"4"},"845818953":{"author":"srideep242n","author_url":"https://www.scribd.com/user/726171407/srideep242n","categories":[],"description":"","id":845818953,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":51,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/845818953/298x396/bb2e21d057/1743674023?v=1","run_time":0,"short_title":"JAVASCRIPT-MODULE 4 full","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/845818953/149x198/1f14b9718d/1743674023?v=1","title":"JAVASCRIPT-MODULE 4 full","type":"document","url":"https://www.scribd.com/document/845818953/JAVASCRIPT-MODULE-4-full","views":"4"},"847926250":{"author":"sdgamerz48","author_url":"https://www.scribd.com/user/793752471/sdgamerz48","categories":[],"description":"","id":847926250,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":40,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/847926250/298x396/8186c8e8ee/1744191974?v=1","run_time":0,"short_title":"Unit 5 JavaScript","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/847926250/149x198/986b39b137/1744191974?v=1","title":"Unit 5 JavaScript","type":"document","url":"https://www.scribd.com/document/847926250/Unit-5-JavaScript","views":"10"},"847934867":{"author":"theeeclipse17","author_url":"https://www.scribd.com/user/743106197/theeeclipse17","categories":[],"description":"","id":847934867,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":93,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/847934867/298x396/f832907d60/1744193971?v=1","run_time":0,"short_title":"CIM 322 Topic 2 JavaScript Fundamentals","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/847934867/149x198/b81835112d/1744193971?v=1","title":"CIM 322 Topic 2 JavaScript Fundamentals","type":"document","url":"https://www.scribd.com/document/847934867/CIM-322-Topic-2-JavaScript-Fundamentals","views":"2"},"848282879":{"author":"Candy Man","author_url":"https://www.scribd.com/user/620500610/Candy-Man","categories":[],"description":"","id":848282879,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":123,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/848282879/298x396/c8e0404f52/1744262714?v=1","run_time":0,"short_title":"JavaScript ppt","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/848282879/149x198/89a5644a26/1744262714?v=1","title":"JavaScript ppt","type":"document","url":"https://www.scribd.com/document/848282879/JavaScript-ppt","views":"2"},"851808624":{"author":"mrpatel5005","author_url":"https://www.scribd.com/user/856430819/mrpatel5005","categories":[],"description":null,"id":851808624,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":98,"retina_thumb_url":"https://imgv2-1-f.scribdassets.com/img/document/851808624/298x396/8dc9b9ee3c/1745134075?v=1","run_time":0,"short_title":"BE 5 IT GECBVN BharatVainsh Unit 5(JavaScript) WD 3151606 2023","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/851808624/149x198/6538e2d6e7/1745134075?v=1","title":"BE 5 IT GECBVN BharatVainsh Unit 5(JavaScript) WD 3151606 2023","type":"document","url":"https://www.scribd.com/document/851808624/BE-5-IT-GECBVN-BharatVainsh-Unit-5-JavaScript-WD-3151606-2023","views":"2"},"853923681":{"author":"Tanmay Warthe","author_url":"https://www.scribd.com/user/663665351/Tanmay-Warthe","categories":[],"description":"","id":853923681,"is_series":false,"in_library":false,"library_xhr_pending":false,"page_count":58,"retina_thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/853923681/298x396/c2fc35fa83/1745592744?v=1","run_time":0,"short_title":"JS 1","static_rating":{"rating":0,"count":0,"up_count":0},"thumb_url":"https://imgv2-2-f.scribdassets.com/img/document/853923681/149x198/64dc18597c/1745592744?v=1","title":"JS 1","type":"document","url":"https://www.scribd.com/document/853923681/JS-1","views":"0"}}},"renewalNagProps":null,"signupContext":null,"static":{"config":{"brand":"scribd","google":{"clientId":"491264573595-hs5hu9ijbfl9g6khnkn2retrfr6lcua7.apps.googleusercontent.com","sessionPath":"/open_id_connect/login"},"thirdPartyTags":{"googleAnalytics":{"account_id":"UA-443684-2","current_user":"false","facebook_user_context":"none"},"includeGoogleTagManager":true,"siftScience":{"user_id":null,"unique_browser_tracking_uuid":"1212b0cb-3c7f-4ca3-bd14-247020350324","sift_science_js_key":"cbcb9f556a"}}},"routes":{"accountPath":"L2FjY291bnQtc2V0dGluZ3M=\n","accountSettingsPath":"L2FjY291bnQtc2V0dGluZ3M=\n","androidStoreUrl":"aHR0cHM6Ly9wbGF5Lmdvb2dsZS5jb20vc3RvcmUvYXBwcy9kZXRhaWxzP2lk\nPWNvbS5zY3JpYmQuYXBwLnJlYWRlcjAuZG9jcw==\n","appPromoDeepLink":"aHR0cHM6Ly9zY3JpYmQucGFnZS5saW5rLz9hbXY9MTMuMTYmYXBuPWNvbS5z\nY3JpYmQuYXBwLnJlYWRlcjAuZG9jcyZpYmk9Y29tLnNjcmliZC5kb2NzJmlt\ndj0xMy4xNiZpc2k9NjQ0ODgwNzcxNCZsaW5rPWh0dHBzJTNBJTJGJTJGd3d3\nLnNjcmliZC5jb20lMkZkb2N1bWVudCUyRjY5MjE3NDk3NyUyRlVuaXQtSS1C\nYXNpY3Mtb2YtSmF2YVNjcmlwdC1Qcm9ncmFtbWluZy1Gb3JTdHVkZW50cyUz\nRnJlZmVycmVyJTNEdXRtX2NhbXBhaWduJTNEZG9jX3BhZ2UlMjZ1dG1fc291\ncmNlJTNEZG9jX3BhZ2UlMjZ1dG1fbWVkaXVtJTNEd2ViJnN0PVVuaXQlMjBJ\nJTIwLSUyMEJhc2ljcyUyMG9mJTIwSmF2YVNjcmlwdCUyMFByb2dyYW1taW5n\nX0ZvclN0dWRlbnRzJnNpPWh0dHBzOi8vaW1ndjItMS1mLnNjcmliZGFzc2V0\ncy5jb20vaW1nL2RvY3VtZW50LzY5MjE3NDk3Ny9vcmlnaW5hbC8yMTZ4Mjg3\nLzlmMTgwZTBhNmUvMT92PTE=\n","audiobooksAllCategoriesPath":"L2F1ZGlvYm9va3MvY2F0ZWdvcmllcw==\n","audiobooksPath":"L2F1ZGlvYm9va3M=\n","archivePlansCopyActionUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz02OTIx\nNzQ5NzcmbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJjb3B5JTIyJTJDJTIybG9nZ2VkX2luJTIy\nJTNBZmFsc2UlMkMlMjJwbGF0Zm9ybSUyMiUzQSUyMndlYiUyMiU3RA==\n","archivePlansDownloadActionUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hcmNoaXZlL3BsYW5zP2RvYz02OTIx\nNzQ5NzcmbWV0YWRhdGE9JTdCJTIyY29udGV4dCUyMiUzQSUyMmFyY2hpdmVf\ndmlld19yZXN0cmljdGVkJTIyJTJDJTIycGFnZSUyMiUzQSUyMnJlYWQlMjIl\nMkMlMjJhY3Rpb24lMjIlM0ElMjJkb3dubG9hZCUyMiUyQyUyMmxvZ2dlZF9p\nbiUyMiUzQWZhbHNlJTJDJTIycGxhdGZvcm0lMjIlM0ElMjJ3ZWIlMjIlN0Q=\n","bestsellersPath":"L2Jlc3RzZWxsZXJz\n","booksAllCategoriesPath":"L2Jvb2tzL2NhdGVnb3JpZXM=\n","booksPath":"L2Jvb2tz\n","documentsAllCategoriesPath":"L2RvY3MvY2F0ZWdvcmllcw==\n","documentsPath":"L2RvY3M=\n","facebookUrl":"aHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL1NjcmliZC8=\n","homePath":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS8=\n","instagramUrl":"aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9zY3JpYmQv\n","iosStoreUrl":"aHR0cHM6Ly9hcHBzLmFwcGxlLmNvbS91cy9hcHAvNjQ0ODgwNzcxND9tdD04\nJnB0PTI5ODUzNA==\n","languageModalPropsPath":"L2xhbmd1YWdlX21vZGFsX3Byb3Bz\n","logoutPath":"L2xvZ291dA==\n","magazinesAllCategoriesPath":"L21hZ2F6aW5lcy9jYXRlZ29yaWVz\n","magazinesPath":"L21hZ2F6aW5lcw==\n","myUploadsPath":"L3VwbG9hZHM=\n","oauthLoginUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9vYXV0aC9sb2dpbg==\n","oauthSignupUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9vYXV0aC9zaWdudXA=\n","oauthStartTrialUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9vYXV0aC9zaWdudXA/ZG9jX2lkPTY5\nMjE3NDk3Nw==\n","originalsRoute":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20vb3JpZ2luYWxz\n","paymentFixUrl":null,"pinterestUrl":"aHR0cHM6Ly93d3cucGludGVyZXN0LmNvbS9zY3JpYmQv\n","podcastsAllCategories":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wb2RjYXN0cy9jYXRlZ29yaWVz\n","podcastsPath":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wb2RjYXN0cw==\n","profilePath":"","progressiveProfileModalPropsPath":"L2RvYy1wYWdlL3Byb2dyZXNzaXZlLXByb2ZpbGUtbW9kYWwvNjkyMTc0OTc3\n","progressiveProfileModalDismissPath":"L3Byb2dyZXNzaXZlX3Byb2ZpbGVfbW9kYWwvZGlzbWlzc19tb2RhbA==\n","rate":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yYXRpbmdzLmpzb24=\n","readingHistoryDataPath":"L3lvdXItYWNjb3VudC9yZWFkaW5nX2hpc3RvcnlfZGF0YQ==\n","referralsUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yZWZlcnJhbHM=\n","rootPath":"Lw==\n","savedPath":"L3NhdmVk\n","searchPath":"L3NlYXJjaA==\n","sheetMusicPath":"L3NoZWV0bXVzaWM=\n","statsPath":null,"subscribeUrl":"L2FyY2hpdmUvcG1wX2NoZWNrb3V0P2RvYz02OTIxNzQ5NzcmZG9jX2lkPTY5\nMjE3NDk3NyZtZXRhZGF0YT0lN0IlMjJjb250ZXh0JTIyJTNBJTIycG1wJTIy\nJTJDJTIyYWN0aW9uJTIyJTNBJTIyc3RhcnRfdHJpYWwlMjIlMkMlMjJsb2dn\nZWRfaW4lMjIlM0FmYWxzZSUyQyUyMnBsYXRmb3JtJTIyJTNBJTIyd2ViJTIy\nJTJDJTIyYnJvd3Nlcl91dWlkJTIyJTNBJTIyMTIxMmIwY2ItM2M3Zi00Y2Ez\nLWJkMTQtMjQ3MDIwMzUwMzI0JTIyJTdE\n","supportPath":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbQ==\n","twitterUrl":"aHR0cHM6Ly90d2l0dGVyLmNvbS9zY3JpYmQv\n","unpauseAccountUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hY2NvdW50L3VucGF1c2U/ZnJvbT1o\ndHRwcyUzQSUyRiUyRnd3dy5zY3JpYmQuY29tJTJGZG9jdW1lbnQlMkY2OTIx\nNzQ5NzclMkZVbml0LUktQmFzaWNzLW9mLUphdmFTY3JpcHQtUHJvZ3JhbW1p\nbmctRm9yU3R1ZGVudHM=\n","incentivizedUploadPath":"L3VwbG9hZC1kb2N1bWVudD9hcmNoaXZlX2RvYz02OTIxNzQ5Nzc=\n","uploadPath":"L3VwbG9hZC1kb2N1bWVudA==\n","webAnalyticsUrl":"aHR0cHM6Ly93YS5zY3JpYmQuY29t\n","whatIsScribdLandingPath":"L3doYXQtaXMtc2NyaWJk\n","whatIsEverandLandingPath":"L3doYXQtaXMtZXZlcmFuZA==\n","footerContentTypeRoutes":{"documents":"L2RvY3M=\n"},"aboutUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9hYm91dA==\n","accessibilityUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5NTg2LUFjY2Vzc2liaWxpdHktTm90aWNl\n","adChoicesUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5MzY2\n","blogUrl":"aHR0cHM6Ly9ibG9nLnNjcmliZC5jb20v\n","careersUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9jYXJlZXJz\n","contactUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9jb250YWN0\n","copyrightUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvc2VjdGlvbnMv\nMjAyMjQ2MDg2\n","everandBlogUrl":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20vYmxvZw==\n","everandHostPath":"aHR0cHM6Ly93d3cuZXZlcmFuZC5jb20=\n","faqUrl":"aHR0cDovL3N1cHBvcnQuc2NyaWJkLmNvbS9oYy9lbi11cw==\n","giftUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9naWZ0\n","pressUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9tZWRpYQ==\n","privacyUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wcml2YWN5\n","privacyRequestFormUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvYXJ0aWNsZXMvMzYwMDM4\nMDE2OTMxLVByaXZhY3ktUmlnaHRzLVJlcXVlc3QtRm9ybQ==\n","publishersUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9wdWJsaXNoZXJz\n","purchaseHelpUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvc2VjdGlvbnMv\nMjAyMjQ2MzA2\n","redeemUrl":"aHR0cHM6Ly93d3cuc2NyaWJkLmNvbS9yZWRlZW0=\n","simpleCancelUrl":"L3lvdXItYWNjb3VudC9jYW5jZWwtbm93\n","termsUrl":"aHR0cHM6Ly9zdXBwb3J0LnNjcmliZC5jb20vaGMvZW4tdXMvYXJ0aWNsZXMv\nMjEwMTI5MzI2LUdlbmVyYWwtVGVybXMtb2YtVXNl\n"}},"toolbar":{"search_path":"L2RvY3VtZW50cy9zZWFyY2g/YWxsb3dlZF9wYWdlcz0xJTJDMiUyQzMlMkM0\nJTJDNSUyQzYlMkM3JTJDOCUyQzklMkMxMCUyQzExJTJDMTIlMkMxMyUyQzE0\nJTJDMTUlMkMxNiUyQzE3JTJDMTglMkMxOSUyQzIwJTJDMjElMkMyMiUyQzIz\nJTJDMjQlMkMyNSUyQzI2JmF1dGhfdG9rZW49TlRoUlZHMFlzY2tGYUNKdzhs\nOUFRd1FqWHBFJTNEJmF1dGhlbnRpY2l0eV90b2tlbj1pYlNWOG1PWVJRUTk3\nQmRLcUN2akdIRVk5dDlVU0ZINGM5Z3Nzd0dObnd4VmxPSWltSkxVcEVBUmN3\ndFlGQVhfVXE2YjNUc25oQXMxNWdnd3IzcU5OdyZleHBpcmVzPTE3NDY5MDgx\nNjAmd29yZERvY3VtZW50SWQ9NjkyMTc0OTc3JndvcmRVcGxvYWRJZD03MTI2\nMTM4NzA=\n","topic_search_path":"L2RvYy1wYWdlL3RvcGljX3NlYXJjaA==\n"},"user":{"browserUuid":"1212b0cb-3c7f-4ca3-bd14-247020350324","canExtendSubscription":null,"country":null,"emailHash":null,"hasPublishedDocuments":false,"id":null,"initials":"","isAborted":null,"isAdmin":null,"isBot":true,"isDunning":false,"isEligibleForFreeTrial":true,"isLoggedIn":false,"isMobile":false,"isPaused":false,"isSubscriber":false,"isTrialing":false,"isUnderDunningLock":false,"name":null,"personaIconRetinaUrl":null,"personaIconUrl":null,"showSimpleCancelOption":false},"wordDocument":{"ads_disabled":false,"archived":true,"author_name":"Tejaswini Nikam","copyright_name":"© All Rights Reserved","description":"Notes of css","downloadCount":0,"edit_path":null,"embed_modal_props_path":"/doc-page/embed-modal-props/692174977","extensions":["pdf"],"extracted_title":"Unit I - Basics of JavaScript Programming - ForStudents","flag_document_modal_props_path":"/doc-page/flag-document-modal-props/692174977","formats":[{"extension":"pdf","filesize":"2.82 MB"}],"generatedDescription":null,"hasFreeAccessFromUploader":false,"hasScrambledFonts":false,"id":692174977,"image_url":"https://imgv2-1-f.scribdassets.com/img/document/692174977/149x198/d433730204/1710577957?v=1","in_library":false,"isDocumentOwner":false,"is_archive":true,"is_credit_restricted":false,"is_downloadable":true,"is_sheet_music":false,"is_view_restricted_archive":true,"isbn":null,"library_xhr_pending":false,"page_count":26,"page_dimensions":{"width":612,"height":792},"page_orientation":"portrait","publisher_info":{"is_author":false,"name":"Tejaswini Nikam","url":"https://www.scribd.com/user/639612331/Tejaswini-Nikam"},"reportContentModalPropsPath":"/doc-page/report-content-modal-props/692174977","retina_image_url":"https://imgv2-2-f.scribdassets.com/img/document/692174977/298x396/524bf1d796/1710577957?v=1","secret_password":null,"short_title":"Unit I - Basics of JavaScript Programming_ForStude...","showFullDoc":false,"show_archive_paywall":true,"signup_context":null,"title":"Unit I - Basics of JavaScript Programming_ForStudents","translation":{"original":null,"translations":[]},"type":"view_restricted","url":"https://www.scribd.com/document/692174977/Unit-I-Basics-of-JavaScript-Programming-ForStudents","views":"29","doc_topics":[],"remainingCopyCredits":0},"X_Request_ID":"c085e3647178216da970ad5202a4574854421129729979bf4fdc77e3e5131f4a"}--></script></div></div><script type="text/javascript" src="/https/www.scribd.com/options/exposed_to_client.js"></script><script type="application/javascript">window._translations = JSON.parse("{\"en-US\":{\"translation\":{\");\\n this\":{\"nestingSuffix = iOpts\":{\"nestingSuffix ? regexEscape(iOpts\":{\"nestingSuffix) : iOpts\":{}}}},\"account_settings\":{\"facebook_connect\":{\"facebook\":\"Facebook\"},\"payment_card\":{\"apple_sub\":\"Apple Subscriptions\",\"card_num\":\"Card ending in {{card_number}}\",\"fortumo_bill\":\"Mobile Bill (Serviced by Fortumo)\",\"google_play\":\"Google Play Subscriptions\",\"no_card\":\"No card on file\",\"paypal\":\"PayPal: {{email}}\"},\"plans\":{\"plan_module\":{\"slash_month\":\"/month\",\"slash_year\":\"/year\"}},\"show\":{\"restart_membership\":\"Restart subscription\"},\"subscription_card\":{\"plan\":{\"annual\":\"Premium Annual\",\"lite\":\"Lite\",\"monthly\":\"Premium Monthly\"},\"unlocks_available\":\"{{count}} unlock available\",\"unlocks_available_plural\":\"{{count}} unlocks available\",\"unlocks_will_expire\":\"Unlocks will expire on {{date}}\"}},\"ai_assistant\":{\"ask_ai\":{\"cta_button_listen\":\"Listen\",\"cta_button_preview\":\"Preview\",\"cta_button_read\":\"Read\",\"cta_button_sample\":\"Sample\",\"cta_button_show_more\":\"Show more\",\"cta_button_view_titles\":\"View titles\",\"disclaimer_ask_ai_may_make_mistakes\":\"Ask AI v1.0 may make mistakes.\",\"error_messages\":\"Hmm, something went wrong. Please try again later.\",\"feedback_bad_response\":\"Bad Response\",\"feedback_good_response\":\"Good Response\",\"feedback_header\":\"Tell us more about your rating?\",\"feedback_success_description\":\"Your feedback is crucial in helping us improve our AI responses.\",\"feedback_success_header\":\"Thank you for your feedback\",\"feedback_tags_harmful_offensive\":\"Harmful or offensive\",\"feedback_tags_incorrect\":\"Incorrect or inaccurate\",\"feedback_tags_not_helpful\":\"Not helpful\",\"feedback_tags_not_what_meant\":\"Not what I meant\",\"feedback_tags_other\":\"Other\",\"feedback_tags_too_long\":\"Took too long\",\"greetings_subheading\":\"Ask me to recommend books or audiobooks - similar to reads you love, favorite categories, or with a specific plot or setting.\",\"save_button_remove_from_saved\":\"Remove from Saved\",\"save_button_save_for_later\":\"Save for later\",\"shared_highlight_can_help\":\"I can help!\",\"shared_highlight_looking_for\":\"Looking for\",\"shared_highlight_your_next_read\":\"your next read?\",\"suggestions_audiobooks_relationship\":\"I\'m seeking good audiobooks to help me improve my relationship with my girlfriend?\",\"suggestions_audiobooks_shoe_dog\":\"I’m looking for the audiobook Shoe Dog by Phil Knight?\",\"suggestions_audiobooks_successful_entrepreneurs\":\"Share inspirational audiobooks about successful entrepreneurs like The Spanx Story?\",\"suggestions_books_balance_technology_as_mom\":\"As a mom with kids below age 9, I need a book on how to balance technology and screen time for kids?\",\"suggestions_books_big_little_lies\":\"Domestic suspense books similar to Big Little Lies by Liane Moriarty?\",\"suggestions_books_children_books_science\":\"Children books about science that are appropriate for a 6 year old?\",\"suggestions_books_climate_change\":\"Can you suggest the top 3 books about climate change that I should read?\",\"suggestions_books_cookbooks\":\"Popular cookbooks for healthy diets?\",\"suggestions_books_creativity_inc\":\"Any books similar to Creativity Inc by Ed Catmull?\",\"suggestions_books_fiction_books\":\"Are there any fiction books about people with schizophrenia?\",\"suggestions_books_financial_independence\":\"Books about financial independence like Pathfinders by JL Collins?\",\"suggestions_books_finding_love_againa\":\"I want to read a good story about finding love again after life setbacks?\",\"suggestions_books_glad_my_mom_died\":\"Do you have I’m Glad My Mom Died?\",\"suggestions_books_inspire_me_with_books\":\"I want to be inspired, what books do you recommend?\",\"suggestions_books_leadership_skills\":\"Good books on leadership skills for women similar to Career Forward by Puma?\",\"suggestions_books_light_funnny_lift_mood\":\"Any light and funny books to lift my mood?\",\"suggestions_books_make_me_cry_ugly\":\"Looking for books that will make me ugly cry?\",\"suggestions_books_medicine_and_disease\":\"Do you have books about medicine and disease similar to Being Mortal by Gawande?\",\"suggestions_books_memoirs_not_business_leaders\":\"Looking for good memoirs but not about business leaders?\",\"suggestions_books_memoirs_successful_athletes\":\"Share memoirs about successful athletes that would inspire young kids to work hard?\",\"suggestions_books_millionaire_next_door\":\"Books like The Millionaire Next Door that are good?\",\"suggestions_books_no_weak_female_characters\":\"I don’t like books with weak female characters. Can you suggest novels with strong, empowered women?\",\"suggestions_books_real_estate_investor\":\"I want to learn how to be a real estate investor - what books should I read?\",\"suggestions_books_self_help_books\":\"I want self-help books not written by Dale Carnegie?\",\"suggestions_books_sets_india\":\"Can you recommend books set in India?\",\"suggestions_books_story_at_sea\":\"Books where the story happens at sea?\",\"suggestions_books_suggestions_about_cats\":\"My daughter is 12 yrs old and also loves cats. Any suggestions?\",\"suggestions_books_underdog_sports_teams\":\"Interested in books about underdog sports teams similar to The Boys in the Boat by Brown?\",\"suggestions_books_walter_isaacson\":\"Do you have books by Walter Isaacson?\",\"suggestions_books_written_by_sarah_maas\":\"Show me books written by Sarah Maas?\",\"suggestions_deeply_emotional_memoir\":\"I want a deeply emotional memoir that explores overcoming adversity - any ideas?\",\"suggestions_fiction_novels_medival_europe\":\"Can you recommend any fiction novels set in Medieval Europe?\",\"suggestions_funny_romance_books\":\"I need some cheering up, can you recommend some super funny laugh-out-loud romance books for me?\",\"suggestions_good_audiobook_set_rome\":\"Looking for a good audiobook set in ancient Rome?\",\"suggestions_mystery_novel_female_detective\":\"Can you recommend a mystery novel set in the 1920s that features a female detective?\",\"suggestions_romance_lovers_plot\":\"Give me a spicy romance book with an enemies to lovers plot?\",\"suggestions_romance_novel_world_war\":\"Can you recommend a romance novel set during World War II?\",\"suggestions_self_improvement_audiobooks\":\"I’m looking for inspiration to stop procrastinating. Can you recommend some self-improvement audiobooks on this topic?\",\"suggestions_similar_achilles_madeline_miller\":\"I enjoyed Song of Achilles by Madeline Miller. Suggest another retelling of a myth or legend?\",\"suggestions_similar_author_fantasy_series_george_rr_martin\":\"Recommend a fantasy series similar to A Song of Ice and Fire by George RR Martin?\",\"suggestions_similar_author_psychological_thrillers_gillian_flynn\":\"Love psychological thrillers by Gillian Flynn - what similar authors should I check out?\",\"suggestions_similar_books_chris_voss\":\"I liked Never Split the Difference by Chris Voss, recommend similar books to me?\",\"suggestions_similar_books_crawdads_sing\":\"I loved Where the Crawdads Sing by Delia Owens - what else should I read?\",\"suggestions_similar_books_female_main_character\":\"I\'m looking for books set in Europe with a female main character?\",\"suggestions_similar_books_lord_of_rings\":\"I loved Lord of the Rings, can you recommend something similar?\",\"suggestions_similar_books_many_lives_mama_love\":\"Books similar to The Many Lives of Mama Love?\",\"suggestions_similar_books_marie_kondo\":\"I\'m a fan of Marie Kondo and her approach to simplifying life. What books by similar authors would you recommend?\",\"suggestions_similar_plot_twists\":\"I don’t like predictable endings, can you find a couple of books with good plot twists for me?\",\"suggestions_thriller_unexpected_plot_twists\":\"I’m looking for a thriller with unexpected plot twists and a dark setting?\",\"suggestions_true_story_book_recommendations\":\"Any true story book recommendations?\",\"text_input_ask_follow_up\":\"Ask a follow-up\",\"text_input_discover_next_read\":\"Discover your next read\",\"text_input_label\":\"Send Message\",\"thumbs_down_other_header\":\"Provide additional feedback\",\"thumbs_down_submit_button\":\"Submit Feedback\"}},\"bestsellers\":{\"promo\":{\"enjoy_bestselling_titles_when_subscribed\":\"Enjoy bestselling titles when you subscribe\"}},\"books\":{\"epub\":{\"banners\":{\"enjoying_preview_update_payment\":\"Your next unlock will be available after you update your payment information.\",\"enjoying_preview_update_payment_upgrade\":\"Update payment information to upgrade to Plus\"}}},\"browse\":{\"promo\":{\"everand_also_available_on_mobile_devices\":\"Everand is also available for your mobile devices.\"}},\"category\":{\"documents\":\"{{category}} Documents\"},\"chrome\":{\"flash\":{\"close_notification\":\"Close notification\"},\"renewal_nag\":{\"click_here_to_become_a_member\":\"Click here to become a member\",\"click_here_to_renew_it\":\"Click here to renew it\",\"click_here_to_resume_it\":\"Click here to resume it\",\"click_here_to_update_it\":\"Click here to update it\",\"resume_membership\":\"Resume membership\",\"update_payment\":\"Update Payment\",\"you_canceled_your_free_trial\":\"You canceled your free trial.\",\"your_credit_card_information_is_invalid_\":\"Your credit card information is invalid.\",\"your_membership_is_on_hold\":\"Your membership is on hold because of a problem with your last payment.\",\"your_membership_is_paused_until_paused_until_date\":\"Your membership is paused until {{paused_until_date}}.\",\"your_paypal_information_is_invalid\":\"Your Paypal information is invalid.\",\"your_scribd_gift_membership_has_ended\":\"Your Scribd gift membership has ended.\",\"your_scribd_membership_has_expired\":\"Your Scribd membership has expired.\",\"your_scribd_membership_was_canceled\":\"Your Scribd membership was canceled.\"}},\"common\":{\"later\":\"Later\",\"update_payment\":\"Update payment\"},\"content_lengths\":{\"listening_minutes\":\"{{minutes}} min listen\",\"reading_minutes\":\"{{minutes}} min read\"},\"content_preview\":{\"available_on\":\"Available on {{date}}\",\"flags\":{\"expiring_soon\":\"Leaving soon\",\"geo_restricted\":\"Unavailable\",\"not_available\":\"Unavailable\",\"throttled\":\"Available soon\"},\"formats\":{\"also_available_list_view\":\"Also available as \\u003ca href={{url}} class=\'also_available\'\\u003e{{content_type}}\\u003c/a\\u003e\"},\"geo_restricted\":\"Unavailable in your country\",\"reviews\":{\"delete_rating_and_review\":\"Delete this rating and review?\",\"delete_warning\":\"This action cannot be undone.\",\"rating_and_review_deleted\":\"Rating and review deleted\"},\"save\":{\"add\":\"Save for later\",\"remove\":\"Remove from Saved\"},\"share\":\"Share\",\"social_media_share\":{\"email\":\"Email\",\"pinterest\":\"Pinterest\",\"twitter\":\"Twitter\"},\"social_media_share_modal\":{\"linked_copied\":\"Link copied\"},\"unavailable\":\"Currently unavailable\",\"view_titles_in_series\":\"View titles in series\"},\"content_types\":{\"article\":\"Article\",\"audiobook\":\"Audiobook\",\"audiobook_series\":\"Audiobook series\",\"audiobooks\":\"Audiobooks\",\"books\":\"Books\",\"document\":\"Document\",\"documents\":\"Documents\",\"ebook\":\"Ebook\",\"ebook_series\":\"Ebook series\",\"ebooks\":\"Ebooks\",\"magazine\":\"Magazine\",\"magazines\":\"Magazines\",\"podcast\":\"Podcast\",\"podcast_episode\":\"Podcast episode\",\"podcasts\":\"Podcasts\",\"sheet_music\":\"Sheet music\",\"song\":\"Song\"},\"doc_page\":{\"account_creation\":{\"get_instant_access_with_free_account\":\"Get instant access to this document and millions more with a free account.\",\"to_continue_reading_please_sign_in\":\"To continue reading, please sign in\"},\"ad_label\":{\"ad_info\":{\"description\":\"We use ads to keep content free and accessible for everyone. You can remove them by \\u003ca href=\'{{signupUrl}}\'\\u003esigning up\\u003c/a\\u003e for a Scribd subscription.\",\"dunning_description\":\"We use ads to keep content free and accessible for everyone. You can remove them by \\u003ca href=\'{{updateUrl}}\'\\u003eupdating your payment\\u003c/a\\u003e.\"}},\"ai_enhanced_tag\":{\"ai_enhanced\":\"AI-enhanced\",\"ai_enhanced_document\":\"AI-enhanced document\",\"ai_translated_document\":\"AI-translated document\",\"description\":\"AI-enhanced description\",\"description_tooltip\":\"Leveraging AI technology, we\'ve optimized the description for improved clarity.\",\"title\":\"AI-enhanced title\",\"title_and_description\":\"AI-enhanced title and description\",\"title_and_description_tooltip\":\"Leveraging AI technology, we\'ve optimized the title and description for improved clarity.\",\"title_tooltip\":\"Leveraging AI technology, we\'ve optimized the title for improved clarity.\"},\"annotation_popover\":{\"add_note\":\"Add note\",\"highlight\":\"Highlight\",\"share_quote\":\"Share quote\"},\"app_promo\":{\"millions_of_documents\":\"Millions of documents at your fingertips\"},\"app_promo_interstitial\":{\"continue_for_free\":\"Continue for free\"},\"blur_promo\":{\"become_member_for_full_access\":\"Become a Scribd member for full access.\",\"read_and_download_full_documents\":\"Read and download full documents.\",\"skip_ad\":\"Skip ad\",\"subscribe_now\":\"Subscribe Now\",\"subscribe_with_a_free_trial\":\"Subscribe with a free trial\",\"trial_duration\":{\"start_your_trial\":\"Start your {{trialDuration}} day free trial\"},\"unlock_next_pages_after_an_ad\":\"Unlock the next {{count}} page after an ad\",\"unlock_next_pages_after_an_ad_plural\":\"Unlock the next {{count}} pages after an ad\",\"unlock_this_document\":\"Unlock this document\",\"unlock_this_document_after_an_ad\":\"Unlock this document after an ad\",\"unlock_this_page_after_an_ad\":\"Unlock this page after an ad\",\"upload_a_doc_to_download_or_sub\":\"Upload a document to download this document or subscribe to read and download.\",\"upload_to_download\":\"Upload to download\"},\"description_modal\":{\"description\":\"Description\"},\"doc_chat_additional_feedback\":{\"heading\":\"Provide additional feedback\",\"placeholder\":\"What are your thoughts on the response? How could it be improved?\"},\"doc_chat_down_vote_feedback\":{\"not_factually_correct\":\"Not factually correct\",\"offensive_unsafe\":\"Offensive/Unsafe\",\"other\":\"Other\",\"submit\":\"Submit Feedback\"},\"doc_chat_feedback\":{\"down_vote_question_heading\":\"Why did you choose this rating?\",\"thank_you_response\":\"Your feedback is valuable and helps us improve our AI responses.\",\"thank_you_response_heading\":\"Thanks so much for your feedback\"},\"doc_chat_settings\":{\"clear_history\":\"Clear History\",\"faq\":\"FAQ\"},\"doc_chat_usage\":{\"exceed_warning\":\"You’ve reached your monthly limit of {{count}} prompts. Thank you for being so actively engaged with DocTalk beta. Your prompt limit will reset next month!\",\"limit_reminder\":\"Wow, you’ve reached {{count}} prompts! As part of our DocTalk beta program, you have {{left}} prompts left. Your feedback is appreciated as we refine this feature.\"},\"doc_reader_toolbar\":{\"downloaded_number_times\":\"Downloaded {{number}} times\"},\"doc_summary\":{\"number_downloads\":\"{{number}} downloads\"},\"download_as_formats_or_read_online\":\"Download as {{formats}} or read online on Scribd\",\"download_to_read_ad_free\":\"Download to read ad-free\",\"embed_modal\":{\"title\":\"Embed document\"},\"fallback_ad\":{\"millions_of_documents_ad_free\":\"Millions of documents at your fingertips, ad-free\"},\"fixed_viewport_bottom_components\":{\"check_out_these_free_titles\":\"Check out these free titles\"},\"flash\":{\"rating_not_saved_try_again\":\"Rating not saved, please try again\"},\"get_scribd_without_ads\":\"Get Scribd without ads.\",\"incentivized_upload\":{\"to_access_this_document_trial_duration\":\"To access this document, upload one of yours, or subscribe with a {{trialDuration}} day free trial. Cancel anytime.\",\"to_access_this_document_trial_duration_plural\":\"To access this document, upload {{count}} of yours, or subscribe with a {{trialDuration}} day free trial. Cancel anytime.\"},\"key_topics\":{\"ai_summary\":\"AI summary\",\"copy_all_excerpts\":\"Copy all excerpts\",\"copy_excerpt\":\"Copy excerpt\",\"explain\":\"Explain\",\"explain_more\":\"Explain more\",\"keyword_match_results\":\"Keyword match\",\"num_excerpts\":\"1 excerpt\",\"num_excerpts_plural\":\"{{count}} excerpts\",\"num_key_excerpts\":\"1 key excerpt\",\"num_key_excerpts_plural\":\"{{count}} key excerpts\",\"topics_results\":\"Topics\"},\"metadata\":{\"description\":{\"original_description\":\"Original Description\"}},\"mobile_metadata\":{\"collapse_full_title\":\"Hide full title\",\"expand_full_title\":\"Show full title\"},\"mouse_menu\":{\"copy_page_text\":\"Copy page text\",\"copy_text\":\"Copy text\",\"copy_text_unavailable\":\"Copy text unavailable\",\"copy_text_unavailable_on_this_page\":\"Copy text unavailable on this page\"},\"note\":\"Note\",\"page\":{\"preferred_language_set_to_url_params_language_settings_changed\":\"Preferred language set to {{url_params_language_settings_changed}}\"},\"ratings\":{\"mark_as_not_useful\":\"Mark this document as not useful\",\"mark_as_useful\":\"Mark this document as useful\",\"no_ratings\":\"0 ratings\",\"no_ratings_yet\":\"No ratings yet\",\"num_votes\":\"({{count, locale}} vote)\",\"num_votes_plural\":\"({{count, locale}} votes)\",\"page_count\":\"{{count, locale}} page\",\"page_count_plural\":\"{{count, locale}} pages\",\"percent_found_document_not_useful\":\"{{percentage}}% found this document not useful\",\"percent_found_document_useful\":\"{{percentage}}% found this document useful\",\"press_again_undo\":\"Press again to undo.\",\"sign_up_to_rate_this_title\":\"Sign up to rate this title\",\"you_marked_as_useful\":\"You marked this document as useful\"},\"read_this_document_in_other_languages\":\"Read this document in other languages\",\"recommender_list\":{\"audiobook\":\"audiobook\",\"book\":\"book\",\"might_also_like\":\"You might also like\",\"show_more\":\"Show more\"},\"report_content_modal\":{\"button_name\":\"Report\",\"category_error_flash\":\"Select a category to submit your report\",\"copyright_notice\":\"If you are the copyright owner of this document and want to report it, please visit the \\u003ca href={{url}}\\u003ecopyright infringement notice\\u003c/a\\u003e page to submit a report.\",\"cta\":{\"cancel\":\"Cancel\",\"submit\":\"Submit\"},\"document_has_been_reported\":\"Document has been reported.\",\"problem_submitting_report\":\"We encountered a problem submitting your report. Please try again.\",\"select_an_option\":\"Select an option...\",\"sub_type\":{\"academic_dishonesty\":\"Academic Dishonesty\",\"child_privacy\":\"Child Privacy\",\"child_sexual_abuse\":\"Child Sexual Abuse\",\"dangerous_products_services\":\"Dangerous Products/Services\",\"general_privacy\":\"General Privacy\",\"inciting_violence_or_hatred\":\"Inciting Violence or Hatred\",\"ip_infringement_copyright\":\"IP Infringement (copyright)\",\"ip_infringement_non_copyright\":\"IP Infringement (non-copyright)\",\"minor_exploitation\":\"Minor Exploitation\",\"non_violent_offenses\":\"Non-violent Offenses\",\"other\":\"Other\",\"self_harm\":\"Self-harm\",\"sexual_offenses\":\"Sexual Offenses\",\"sexually_explicit\":\"Sexually Explicit\",\"shocking_or_disturbing\":\"Shocking or Disturbing\",\"spreading_false_information\":\"Spreading False Information\",\"terrorism\":\"Terrorism\",\"threatening_behavior\":\"Threatening Behavior\",\"violent_offenses\":\"Violent Offenses\"},\"subcategory_error_flash\":\"Select a sub-category to submit your report\",\"title\":\"Report Content\",\"type\":{\"dangerous_and_derogatory\":\"Dangerous \\u0026 Derogatory\",\"dangerous_and_derogatory_tooltip\":\"Content that encourages harmful, threatening, or hateful behavior.\",\"deceptive_and_fraudulent\":\"Deceptive \\u0026 Fraudulent\",\"deceptive_and_fraudulent_tooltip\":\"Content that intentionally misleads, deceives, or engages in fraudulent activities.\",\"explicit\":\"Explicit\",\"explicit_tooltip\":\"Content that is graphic, offensive, or disturbing.\",\"illegal\":\"Illegal\",\"illegal_tooltip\":\"Content that breaks the law or promotes illegal activities.\",\"intellectual_property\":\"Intellectual Property\",\"intellectual_property_tooltip\":\"Content that uses someone else\'s protected work without permission.\",\"low_quality\":\"Low quality\",\"low_quality_tooltip\":\"Content that fails to meet minimum standards for clarity, relevance, or completeness.\",\"privacy\":\"Privacy\",\"privacy_tooltip\":\"Content that misuses personal information.\",\"spam\":\"Spam\",\"spam_tooltip\":\"Unsolicited and repetitive content that disrupts your experience.\"}},\"share\":{\"copy_link\":\"Copy link\",\"link_copied\":\"Link copied!\",\"share_on_facebook\":\"Share on Facebook\",\"share_on_linkedin\":\"Share on LinkedIn\",\"share_via_email\":\"Share via email\"},\"share_drawer\":{\"copy_link\":\"Copy Link\"},\"share_quote\":{\"page_number\":\"Page {{page}}\"},\"sharing_buttons\":{\"link_copied_private_document\":\"Link Copied! \\u003cspan class=\\\"link_copied_private_doc\\\"\\u003eNote: Sharing a public link to a document marked private will allow others to view it.\\u003c/span\\u003e\",\"not_supported_for_private_documents\":\"This feature is not supported for private documents. If you want to share, select Copy Link, and send the link to others.\"},\"this_document_available_in_languages\":\"This document is available in the following languages:\",\"toast\":{\"copying_text_disabled\":\"Copying text from this document is disabled.\",\"copying_text_success\":\"Text copied to clipboard.\"},\"toolbar\":{\"document_search\":{\"find_in_document\":\"Find in document\"},\"download\":\"Download\",\"download_now\":\"Download now\"},\"translate\":\"Translate\",\"translate_document\":\"Translate Document\",\"view_original_document_in_language\":\"View original document in {{language}}\"},\"everand\":{\"bestsellers\":{\"promo\":{\"enjoy_bestselling_audiobook_titles_when_subscribed\":\"Enjoy bestselling audiobooks when you subscribe\",\"enjoy_bestselling_titles_when_subscribed\":\"Enjoy bestselling ebooks when you subscribe\"}},\"browse_page\":{\"promo\":{\"books_audiobooks_cancel_anytime\":\"Discover millions of ebooks, audiobooks, and so much more, from {{price}}/month. Cancel anytime.\",\"instant_access_and_cancel_anytime\":\"Discover millions of ebooks, audiobooks, and so much more for just {{price}}/month. Cancel anytime.\"}},\"lists\":{\"faq_message_html\":\"We\'ve made important changes to the list experience. To learn more, \\u003ca href={{faqUrl}} target=\\\"_blank\\\"\\u003evisit the FAQs\\u003c/a\\u003e.\"},\"megamenu\":{\"what_is_scribd_btn\":{\"what_is_scribd\":\"What is Everand?\"}},\"modal\":{\"opt_in\":{\"continue_to_everand\":\"Continue to Everand\",\"upcoming_releases_curated_lists_to_your_inbox\":\"Find out about upcoming releases and exclusive originals, plus get curated lists and special offers sent directly to your inbox.\"},\"progressive_profile\":{\"send_me_email_updates\":\"Send me email updates from Everand\",\"welcome_to_everand\":\"Welcome to Everand!\"},\"upsell\":{\"get_the_most_out_of_everand\":\"Get the most out of Everand\",\"unlock_full_access_discover_millions\":\"Unlock full access to the world\'s most fascinating digital library. Discover millions of ebooks, audiobooks, magazines, and more.\"}},\"shared\":{\"cross_link_message\":\"From Everand\",\"footer\":{\"about_scribd\":\"About Everand\",\"everand_-_download_on_the_app_store\":\"Everand - Download on the App Store\",\"everand_-_get_it_on_google_play\":\"Everand - Get it on Google Play\",\"everand_-_get_it_on_kindle_fire\":\"Everand for Kindle Fire\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Everand on Facebook\",\"scribd_on_instagram_aria_label\":\"Everand on Instagram\",\"scribd_on_pinterest_aria_label\":\"Everand on Pinterest\",\"scribd_on_twitter_aria_label\":\"Everand on Twitter\"}}},\"everand_pay_now_modal\":{\"0_unlocks_remain\":\"0 unlocks remaining in your trial\",\"downgrade_cta\":\"Downgrade to Standard\",\"get_unlocks_today\":\"Get {{count}} unlock today, renews monthly\",\"get_unlocks_today_plural\":\"Get {{count}} unlocks today, renews monthly\",\"plus_trial_desc\":\"Subscribe today to get more unlocks and continue enjoying our bestselling ebooks and audiobooks.\",\"standard_trial_desc\":\"Get 3 unlocks per month with the Plus plan, or continue with 1 unlock per month on the Standard plan.\",\"subscription_disclaimer_plus_tax_html\":\"Your {{plan}} plan of {{count}} unlock per month automatically renews for {{price}}/month (plus tax), billed by {{local_entity}}, until you cancel. Cancel anytime in your \\u003ca class=\'account\' href=\'{{account_url}}\' target=\'_blank\'\\u003eAccount Settings\\u003c/a\\u003e. See Scribd’s \\u003ca class=\'terms\' href=\'{{terms_url}}\' target=\'_blank\'\\u003eterms of use\\u003c/a\\u003e and \\u003ca class=\'privacy\' href=\'{{privacy_url}}\' target=\'_blank\'\\u003eprivacy policy\\u003c/a\\u003e for more information.\",\"subscription_disclaimer_plus_tax_html_plural\":\"Your {{plan}} plan of {{count}} unlocks per month automatically renews for {{price}}/month (plus tax), billed by {{local_entity}}, until you cancel. Cancel anytime in your \\u003ca class=\'account\' href=\'{{account_url}}\' target=\'_blank\'\\u003eAccount Settings\\u003c/a\\u003e. See Scribd’s \\u003ca class=\'terms\' href=\'{{terms_url}}\' target=\'_blank\'\\u003eterms of use\\u003c/a\\u003e and \\u003ca class=\'privacy\' href=\'{{privacy_url}}\' target=\'_blank\'\\u003eprivacy policy\\u003c/a\\u003e for more information.\",\"title\":\"Start subscription to unlock title\",\"unlocks_and_price\":\"{{count}} unlock • {{price}}\",\"unlocks_and_price_plural\":\"{{count}} unlocks • {{price}}\",\"upgrade_to_get_unlocks\":\"Upgrade to get {{unlocks}} unlocks today, renews monthly\"},\"get_app_modal\":{\"link_sent_email\":\"Link sent! Please check your email.\"},\"helpers\":{\"document_meta_tags\":{\"scribd_is_the_world_s_largest_social\":\"Scribd is the world\'s largest social reading and publishing site.\"}},\"home\":{\"logged_in\":{\"content_quickview\":{\"also_available_as_an_audiobook\":\"Also available as an audiobook\",\"also_available_as_an_ebook\":\"Also available as an ebook\",\"byline\":{\"narrated_by\":\"narrated by\"},\"close\":\"Close\",\"count_titles\":\"{{count}} title\",\"count_titles_plural\":\"{{count}} titles\",\"go_to_content_type_version\":\"Go to {{content_type}} version\",\"loading\":\"Loading...\",\"more_about_this_episode\":\"More about this episode\",\"more_about_this_issue\":\"More about this issue\",\"more_about_this_series\":\"More about this series\",\"more_about_this_summary\":\"More about this summary\",\"oops_something_went_wrong\":\"Oops, something went wrong\",\"view_all_articles\":\"View all articles\",\"view_all_episodes\":\"View all episodes\",\"view_the_full_title_details\":\"View the full title details\"}}},\"landing_pages\":{\"feed\":{\"view_more_info\":\"View more info\"}},\"megamenu\":{\"documents\":{\"all_documents\":\"All Documents\"},\"hambur_menu\":{\"get_our_free_apps\":\"Get our free apps\"},\"hamburger_menu\":{\"close_menu\":\"Close menu\",\"sign_in_to_your_everand_account\":\"Sign in to your Everand account\",\"sign_in_to_your_scribd_account\":\"Sign in to your Scribd account\",\"welcome\":\"Welcome!\"},\"language\":{\"cancel\":\"Cancel\",\"change_language\":\"Change Language\"},\"language_links\":{\"learn_more\":\"Learn more\"},\"language_picker_dropdown\":{\"language\":\"Language\",\"preferred_language\":\"Preferred Language\"},\"logged_out\":{\"user_menu\":{\"welcome_to_everand\":\"Welcome to Everand!\",\"welcome_to_scribd\":\"Welcome to Scribd!\"}},\"navigation\":{\"categories\":\"Categories\",\"explore_content_type\":\"Explore {{content_type}}\",\"opens_navigation_menu\":\"Open navigation menu\"},\"search_bar\":{\"clear_search\":\"Clear search\",\"close_suggestions\":\"Close suggestions\",\"no_results_found\":\"No search results.\",\"num_results_are_available\":\"{{num_results}} result(s) are available, use up and down arrow keys to navigate.\",\"recent_searches\":\"Recent searches\",\"search\":\"Search\"},\"top_bar\":{\"upload\":\"Upload\"},\"upload\":{\"upload_header\":\"Upload\"},\"user_menu\":{\"document_stats\":\"Document stats\",\"document_uploads\":\"Document uploads\",\"faq_and_support\":\"FAQ and support\",\"hi_name\":\"Hi {{name}}!\",\"invite_friends\":\"Invite friends\",\"language\":\"Language ({{current_language}})\",\"public_profile\":\"Public profile\",\"read_for_free\":\"Read for free\",\"visually_hidden_user_settings\":\"User Settings\",\"your_account\":\"Your account\"},\"what_is_scribd_btn\":{\"what_is_scribd\":\"What is Scribd?\"}},\"modals\":{\"add_to_list\":{\"save\":\"Save to list\",\"title\":\"Add to list\"},\"confirm_delete_review\":{\"title\":\"Delete your review and rating?\"},\"confirm_unsave_item\":{\"content\":\"Are you sure you want to remove this title from Saved Library and any saved lists?\",\"header\":\"Remove title\",\"title\":\"Remove title from Saved Library and any saved lists?\"},\"confirm_unsave_item_in_list\":{\"remove_from_your_lists\":\"Remove from your lists?\",\"removing_from_saved\":\"Removing from Saved will also delete the title from your lists.\",\"removing_this_title_from_saved\":\"Removing this title from Saved will also remove it from your lists.\",\"title\":\"This title is also in a list.\"},\"create_list\":{\"create_list\":\"Create list\",\"failed_to_create_try_again\":\"Failed to create list, please try again\",\"input_description\":{\"privacy_type\":\"No one except you can view this list. Sharing will be disabled.\"},\"input_label\":{\"name\":\"What would you like to name this list?\",\"privacy_type\":\"Make list private\"},\"title\":\"New List\",\"validation_errors\":{\"name\":\"Please enter a list name\"}},\"language_picker\":{\"language_options\":\"Language Options\",\"select_preferred_language\":\"Select your preferred language\",\"translate_and_tailor\":\"We’ll translate site navigation and tailor your personal recommendations where possible to match your preferred language selection.\",\"translate_to_match\":\"We’ll translate site navigation to match your preferred language selection.\"},\"lockshockroadblock\":{\"problem_with_your_last_payment\":\"Problem with your last payment\",\"update_your_payment_to_continue\":\"Update your payment to continue\",\"we_had_an_issue_with_your_last_payment\":\"We had an issue with your last payment. Update your payment info to continue.\",\"your_membership_is_on_hold\":\"Your membership is on hold because of a problem with your last payment.\"}},\"onboarding_modal\":{\"cta\":{\"get_started\":\"Get started\",\"next\":\"Next\",\"see_whats\":\"See what’s new\",\"start_reading\":\"Start reading!\"},\"subtitle\":{\"all_unlocks_renew\":\"Each unlock gives you access to a title from our premium catalog. Unlocks renew monthly. Unused unlocks do not roll over. \",\"lets_go\":\"Let’s go over a few things that have changed.\",\"look_for_titles\":\"Out of unlocks? No problem! Just look for the “unlimited” label to keep on reading.\",\"not_sure_if\":\"Not sure if you’re ready to unlock a premium ebook or audiobook? Save it for later or preview it for a closer look.\",\"read_or_listen_online\":\"Read or listen online or offline. Download unlocked and unlimited titles to enjoy for the duration of your subscription. \",\"weve_already_unlocked\":\"Enjoy the books you’ve already read — no unlocks needed.\",\"your_world_of\":\"Your world of stories starts here.\"},\"title\":{\"anytime_anywhere\":\"Anytime, anywhere\",\"no_need_to\":\"No need to use unlocks on titles you’ve already read\",\"out_of_unlocks\":\"Always more to enjoy\",\"preview_any\":\"Preview any title first\",\"use_your_unlocks\":\"Unlock premium titles\",\"welcome_everand\":\"Welcome to Everand!\",\"your_library\":\"Your library just got bigger\"}},\"page_gate_modal\":{\"check_you_email\":{\"check_your_email\":\"Check your email\"},\"check_your_email\":{\"change_email\":\"Not the correct email?\",\"didnt_receive\":\"Didn\'t receive an email? Check your spam folder, or\",\"email_not_verified_verify_to_continue\":\"Email not verified. Please verify your email to continue.\",\"i_have_verified_my_email\":\"I\'ve verified my email\",\"logout_login_url\":\"Use a different email address\",\"send_again\":\"send again.\",\"to_protect_your_account_html\":\"To protect your account, we\'ve sent a verification email to \\u003cstrong\\u003e{{email}}\\u003c/strong\\u003e. Please click the link in that email to verify your identity. To learn more, please visit our \\u003ca href=\\\"{{support_url}}\\\" class=\\\"faq_link\\\" target=\\\"_blank\\\"\\u003eFAQs\\u003c/a\\u003e.\",\"verify_email_before_continuing\":\"Please verify your email before continuing.\"}},\"pdfs\":{\"doc_search\":{\"page\":\"page\"},\"lightboxes\":{\"download_lightbox\":{\"download_document\":\"Download document\",\"resume_membership\":\"Resume Membership\",\"resuming\":\"Resuming\"},\"embed_lightbox\":{\"autosize\":\"Autosize\",\"beginning_of_document\":\"Beginning of document\",\"copy_link\":\"Copy Link\",\"current_page\":\"Current page\",\"custom\":\"Custom\",\"customization_options_available_below\":\"Customization options available below\",\"embed_this_in_your_website\":\"Embed this in your website\",\"format\":\"Format\",\"fullscreen\":\"Fullscreen\",\"generate_a_link\":\"Generate a Link\",\"height\":\"Height: \",\"html\":\"HTML\",\"link_options\":\"Link Options\",\"link_to_the\":\"Link to the\",\"options\":\"Options\",\"preview\":\"Preview\",\"scroll\":\"Scroll\",\"size\":\"Size\",\"slideshow\":\"Slideshow\",\"start_at_page\":\"Start at page:\",\"style\":\"Style:\",\"sup_sup_the_code_will_be_updated\":\"\\u003csup\\u003e*\\u003c/sup\\u003e The code will be updated based on your changes.\",\"width\":\"Width: \",\"wordpress\":\"Wordpress\"},\"print_lightbox\":{\"cancel\":\"Cancel\",\"download_and_print\":\"Download and print\",\"in_order_to_print_this_document_\":\"In order to print this document from Scribd, you\'ll first need to download it.\",\"print_document\":\"Print document\"}},\"redesign_elements\":{\"actions\":{\"embed\":\"Embed\",\"print\":\"Print\",\"share\":\"Share\"},\"metadata_section\":{\"full_description\":\"Full description\",\"related_titles\":\"Related titles\"},\"more_info_module\":{\"document_information\":\"Document Information\"}},\"show\":{\"sign_in_to_flag_this_title\":\"Sign in to flag this title\",\"you_re_reading_a_preview\":\"You\'re Reading a Preview\"},\"sidebar\":{\"available_formats\":\"Available Formats\",\"click_to_collapse_document_information\":\"click to collapse document information\",\"click_to_expand_document_information\":\"click to expand document information\",\"copyright_no_colon\":\"Copyright\",\"isbn_no_colon\":\"ISBN\",\"uploaded_by\":\"Uploaded by\",\"written_by\":\"Written by\"},\"toolbar\":{\"exit_fullscreen\":\"Exit fullscreen\",\"fullscreen\":\"Fullscreen\",\"showing_strong_1_strong_result_for_query\":\"Showing \\u003cstrong\\u003e1\\u003c/strong\\u003e result for\",\"showing_strong_num_results_strong_results_for_query\":\"Showing \\u003cstrong\\u003e{{num_results}}\\u003c/strong\\u003e results for\",\"you_are_on_page_props_current_page\":\"You are on page {{props_current_page}}\",\"zoom_in\":\"Zoom in\",\"zoom_out\":\"Zoom out\"},\"upvote\":{\"not_useful\":\"Not useful\",\"this_document_is\":\"This document is...\",\"useful\":\"Useful\"}},\"plan_selection_page\":{\"plan_card\":{\"a_selection\":\"200,000+ ebooks and audiobooks, including a selection of our most popular titles\",\"billed_monthly\":\"Billed monthly after trial.\",\"docs_presentations\":\"195M+ documents and presentations on Scribd and SlideShare ad-free\",\"magazines_etc\":\"Magazines, podcasts and sheet music\",\"plus\":\"Plus:\",\"subscribe_plus\":\"Subscribe to Plus\",\"subscribe_standard\":\"Subscribe to Standard\",\"titles_per_month\":\"{{titles}} titles per month from our Plus catalog that includes even more bestsellers and new releases\",\"unlimited\":\"Unlimited access to:\"}},\"plans\":{\"unlock_dropdown\":{\"unlocks\":\"{{count}} unlock\",\"unlocks_plural\":\"{{count}} unlocks\",\"unlocks_renew\":\"Unlocks renew {{refresh_date}}\",\"unlocks_renew_after_payment_information\":\"Unlocks renew after payment information is updated.\",\"view_unlock_history\":\"View unlock history\"},\"unlock_modal\":{\"after_unlocking_this_title\":\"After unlocking this title, you\'ll have {{count}} unlock left until {{refresh_date}}.\",\"after_unlocking_this_title_plural\":\"After unlocking this title, you\'ll have {{count}} unlocks left until {{refresh_date}}.\",\"unlock_this_title\":\"Unlock this title\",\"you_have_unlocks_available\":\"You have {{count}} unlock available.\",\"you_have_unlocks_available_plural\":\"You have {{count}} unlocks available.\"}},\"privacy_policy_modal\":{\"accept\":\"Accept and continue\",\"details_below\":\"You can read the details below. By accepting, you agree to the updated privacy policy.\",\"thank_you\":\"Thank you!\",\"title\":\"We\'ve updated our privacy policy.\",\"try_again\":\"We’ve encountered a problem, please try again.\",\"updated_privacy_policy\":\"We’ve updated our privacy policy so that we are compliant with changing global privacy regulations and to provide you with insight into the limited ways in which we use your data. \",\"view_policy\":\"View updated privacy policy\"},\"promos\":{\"annual_offer\":{\"current_plan\":\"Current plan\",\"immerse\":\"Immerse yourself all year round\",\"read_more_html\":\"Read more.\\u003cspan class=\'save_text\'\\u003eSave more.\\u003c/span\\u003e\",\"save_percent\":\"Save {{value}}%\",\"switch_plan\":\"Switch plan\",\"terms_footer_html\":\"You will be charged the annual fee of {{price}} on {{date}} when you click \\\"Switch plan.\\\" View our \\u003ca class=\'terms_link\' target=\\\"_blank\\\" href={{href}}\\u003eterms of service\\u003c/a\\u003e.\"}},\"receipt\":{\"download\":{\"document\":\"Document\",\"download_iframe\":\"Download iframe\",\"downloading\":\"Downloading\"}},\"recs\":{\"overflow_menu\":{\"congrats_marked_as_read\":\"Congrats! This title is marked as finished.\",\"dont_show_again\":\"Don\'t show again\",\"mark_as_finished\":\"Mark as finished\",\"mark_as_unfinished\":\"Mark as unfinished\",\"removed_from_your_suggestions\":\"Removed from your suggestions.\",\"suggest_more_like_this\":\"Suggest more like this\",\"title_marked_as_unfinished\":\"This title is marked as unfinished.\",\"undo_suggest_more\":\"Undo suggest more like this\",\"we_wont_suggest_more_like_this\":\"Got it! We won’t suggest more like this.\",\"we_wont_suggest_this_again\":\"Got it! We won\'t suggest this again.\",\"well_suggest_more_like_this\":\"Awesome! We\'ll suggest more like this.\"}},\"saved\":{\"list_item_controls\":{\"create_list\":\"Create List\"}},\"scribd\":{\"doc_page\":{\"download_as_multiple_formats\":\"Download as {{formats}}, or {{lastFormat}}\",\"download_as_single_format\":\"Download as {{format}}\",\"download_as_two_formats\":\"Download as {{formatOne}} or {{formatTwo}}\"},\"logged_out_homepage\":{\"we_have_a_new_look\":\"We have a new look. \\u003ca target=\\\"_blank\\\" href={{learnMoreLink}}\\u003eLearn more\\u003c/a\\u003e\",\"welcome_to_scribd\":{\"welcome_to_scribd\":\"Welcome to Scribd\"}},\"modal\":{\"opt_in\":{\"continue_to_scribd\":\"Continue to Scribd\",\"special_offers_new_content_to_your_inbox\":\"Find out about special offers, new content, plus recommendations from our premium products sent directly to your inbox.\"},\"progressive_profile\":{\"explore_documents\":\"Explore [{{documentsCount}}M+] documents across every topic and niche, shared by a global community of thinkers.\",\"get_ad_free_access\":\"Get ad-free access and download any document you want across every topic and niche with a 30-day free trial.\",\"join_our_mailing_list\":\"Join our mailing list to receive personalized recommendations and new product updates\",\"send_me_email_updates\":\"Send me email updates from Scribd\",\"welcome_to_scribd\":\"Welcome to Scribd!\"},\"upsell\":{\"get_the_most_out_of_scribd\":\"Get the most out of Scribd\",\"unlock_full_access_download_documents\":\"Unlock full access to the world’s most fascinating digital library. Download documents and read offline on the app.\"}},\"navigation_category\":{\"academic\":\"Academic\",\"culture\":\"Culture\",\"hobbies_and_crafts\":\"Hobbies \\u0026 Crafts\",\"personal_growth\":\"Personal Growth\",\"professional\":\"Professional\"},\"shared\":{\"cross_link_message\":\"From Scribd\"}},\"search\":{\"filters\":{\"filters\":\"Filters\"},\"list_view\":{\"on_date\":\"on {{date}}\",\"songbook_title\":\"From songbook\"},\"pagination\":{\"next\":\"next\",\"previous\":\"previous\"},\"results\":{\"reading_list\":\"Reading List\",\"top_result\":\"Top Result\"}},\"shared\":{\"account_creation\":{\"add_note_sign_in\":\"To add a note, please sign in\",\"add_note_sign_up\":\"To add a note, please sign up\",\"already_have_an_account\":\"Already have an account?\",\"annotate_document_sign_in\":\"To annotate this document, please sign in\",\"annotate_document_sign_up\":\"To annotate this document, please sign up\",\"annotate_sign_in\":\"To annotate, please sign in\",\"back_to_sign_in\":\"Back to sign in\",\"continue_reading_sign_in\":\"To continue reading, please sign in\",\"continue_reading_sign_up\":\"To continue reading, please sign up\",\"create_bookmark_sign_in\":\"To create a bookmark, please sign in\",\"create_bookmark_sign_up\":\"To create a bookmark, please sign up\",\"creating_your_account\":\"Creating your account...\",\"disclaimer\":\"By signing up with Scribd, you agree to our \\u003ca href=\\\"{{terms_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003eTerms of Service {{opens_in_new_window}}\\u003c/a\\u003e and \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\" tabIndex=\\\"0\\\"\\u003ePrivacy Policy {{opens_in_new_window}}\\u003c/a\\u003e\",\"download_document_sign_in\":\"To download this document, please sign in\",\"download_document_sign_up\":\"To download this document, please sign up\",\"errors\":{\"email_invalid\":\"This email address is invalid or blocked. Please enter another email.\",\"email_registered\":\"This email address is already registered with Scribd. Please enter your password to sign in.\",\"email_taken\":\"That email is taken by another user, please try again.\",\"invalid_character_in_name_please_remove\":\"Invalid character in name. Please remove any special characters\",\"no_valid_email_modal_desc\":\"Your email address is missing or invalid. To keep your account secure, please provide a valid email address.\",\"no_valid_email_modal_title\":\"Update your email\",\"password_10_chars\":\"Please enter a password that is at least 10 characters\",\"please_enter_a_name\":\"Please enter a name\",\"please_enter_a_valid_email\":\"Please enter a valid email\",\"that_doesn_t_appear_to_be_a\":\"That doesn\'t appear to be a valid email address. Please try again.\"},\"facebook\":{\"error\":\"Sorry, we are unable to log you in via Facebook at this time.\",\"sign_in\":\"Continue with Facebook\",\"sign_up\":\"Sign up with Facebook\"},\"fail\":\"Fail.\",\"flag_document_sign_in\":\"To flag this document, please sign in\",\"flag_document_sign_up\":\"To flag this document, please sign up\",\"forgot\":{\"enter_email\":\"Enter your email address and we\'ll send you an email with a link to reset your password.\",\"weve_sent_email_html\":\"We\'ve sent an email to \\u003cstrong\\u003e{{escape_validated_email}}\\u003c/strong\\u003e with instructions to reset your password. If it doesn\'t show up soon, check your spam folder and then read this \\u003ca href=\\\"https://support.scribd.com/hc/articles/210134406-What-do-I-do-if-I-ve-lost-or-forgotten-my-password-\\\"\\u003eHelp Center article\\u003c/a\\u003e.\"},\"forgot_password\":\"Forgot password?\",\"give_gift_sign_in\":\"To give this gift, please sign in\",\"give_gift_sign_up\":\"To give this gift, please sign up\",\"google\":{\"error\":\"Google sign in failed\"},\"highlight_document_sign_in\":\"To highlight this document, please sign in\",\"highlight_document_sign_up\":\"To highlight this document, please sign up\",\"join_today_to_start_reading\":\"Join today to start reading\",\"logging_you_in\":\"Logging you in...\",\"not_you\":\"Not you?\",\"now_bringing_you_back\":\"Now bringing you back...\",\"pass\":\"Pass.\",\"password_must_be_at_least_ten_characters\":\"At least 10 characters\",\"password_not_been_breached\":\"Password has not been breached\",\"password_strength\":\"Password strength\",\"password_strength_colon\":\"Password strength: \",\"password_strength_good\":\"Good\",\"password_strength_moderate\":\"Moderate\",\"password_strength_strong\":\"Strong\",\"password_strength_weak\":\"Weak\",\"people_browsing_scribd_html\":\"\\u003cspan\\u003e{{count, locale}} person\\u003c/span\\u003e browsing Scribd right now\",\"people_browsing_scribd_html_plural\":\"\\u003cspan\\u003e{{count, locale}} people\\u003c/span\\u003e browsing Scribd right now\",\"rate_document_sign_in\":\"To rate this document, please sign in\",\"rate_document_sign_up\":\"To rate this document, please sign up\",\"recaptcha_disclaimer\":\"This site is protected by reCAPTCHA and the Google \\u003ca href=\\\"{{privacy_href}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Policy {{opens_in_new_window}}\\u003c/a\\u003e and \\u003ca href=\\\"{{policy_href}}\\\" target=\\\"_blank\\\"\\u003eTerms of Service {{opens_in_new_window}}\\u003c/a\\u003e apply.\",\"redeem_offer_sign_in\":\"To redeem this offer, please sign in\",\"redeem_offer_sign_up\":\"To redeem this offer, please sign up\",\"remember_me\":\"Remember me\",\"reset_password\":\"Reset password\",\"save_document_sign_in\":\"To save this document, please sign in\",\"save_document_sign_up\":\"To save this document, please sign up\",\"send_me_updates_from_scribd\":\"Send me updates from Scribd\",\"share_quote_sign_in\":\"To share this quote, please sign in\",\"share_quote_sign_up\":\"To share this quote, please sign up\",\"sign_in\":\"Sign in\",\"sign_in_add_note\":\"To add a note, please sign in\",\"sign_in_bookmark\":\"To create a bookmark, please sign in\",\"sign_in_create_list\":\"To create a list, please sign in\",\"sign_in_download\":\"To download, please sign in\",\"sign_in_follow\":\"To follow, please sign in\",\"sign_in_give_gift\":\"To give this gift, please sign in\",\"sign_in_highlight\":\"To highlight, please sign in\",\"sign_in_rate\":\"To rate, please sign in\",\"sign_in_redeem\":\"To redeem, please sign in\",\"sign_in_review\":\"To review, please sign in\",\"sign_in_save\":\"To save, please sign in\",\"sign_in_share_quote\":\"To share this quote, please sign in\",\"sign_in_start_months\":\"To start your free {{count}} month, please sign in\",\"sign_in_start_months_plural\":\"To start your free {{count}} months, please sign in\",\"sign_in_successful\":\"Sign in successful\",\"sign_in_to_scribd\":\"Sign in to Scribd\",\"sign_in_upload\":\"To upload, please sign in\",\"sign_in_with_email\":\"Sign in with email\",\"sign_up\":\"Sign up\",\"sign_up_add_note_this_title\":\"Sign up to add a note to this title.\",\"sign_up_annotate\":\"Sign up to annotate.\",\"sign_up_continue_reading_this_title\":\"Sign up to continue reading this title.\",\"sign_up_create_bookmark_this_title\":\"Sign up to create a bookmark.\",\"sign_up_create_list_this_title\":\"Sign up to create a list.\",\"sign_up_download_this_title\":\"Sign up to download this title.\",\"sign_up_follow_magazine_this_title\":\"Sign up to follow this magazine.\",\"sign_up_free_months_this_title\":\"Sign up to start your free {{count}} month.\",\"sign_up_free_months_this_title_plural\":\"Sign up to start your free {{count}} months.\",\"sign_up_give_gift_this_title\":\"Sign up to give this gift.\",\"sign_up_highlight_this_title\":\"Sign up to highlight.\",\"sign_up_or_sign_in\":\"Sign up or sign in\",\"sign_up_save\":\"To save, please create a Scribd account\",\"sign_up_save_this_title\":\"Sign up to save this title.\",\"sign_up_share_quote_this_title\":\"Sign up to share a quote from this title.\",\"sign_up_successful\":\"Sign up successful\",\"sign_up_to_rate_title\":\"Sign up to rate this title\",\"sign_up_to_review_title\":\"Sign up to review this title\",\"sign_up_with_email\":\"Sign up with email\",\"signup_to_redeem_offer\":\"Sign up to redeem offer\",\"start_free_months_sign_in\":\"To start your free {{count}} month, please sign in\",\"start_free_months_sign_in_plural\":\"To start your free {{count}} months, please sign in\",\"start_free_months_sign_up\":\"To start your free {{count}} month, please sign up\",\"start_free_months_sign_up_plural\":\"To start your free {{count}} months, please sign up\",\"upload_document_sign_in\":\"To upload a document, please sign in\",\"upload_document_sign_up\":\"To upload a document, please sign up\",\"use_another_email_address\":\"Use another email address\"},\"actions\":{\"read_continue\":\"Continue reading\",\"read_preview\":\"Read preview\"},\"ad_blocker_modal\":{\"i_disabled_my_ad_blocker\":\"I disabled my ad-blocker\",\"it_looks_like_youre_using_and_ad_blocker\":\"It looks like you\'re using an ad-blocker.\",\"show_me_how\":\"Show me how\",\"to_listen_to_titels_on_everand_disble_ad_blocker_or_use_mobile_app\":\"To listen to titles on Everand, please disable your ad-blocker or use our mobile app.\",\"to_read_titles_on_everand_disable_ad_blocker_or_use_mobile_app\":\"To read titles on Everand, please disable your ad-blocker or use our mobile app.\"},\"byline\":{\"and\":\"and\",\"by\":\"By\",\"narrated_by\":\"Narrated by\",\"published_by\":\"Published by\",\"written_by\":\"Written by\"},\"carousels\":{\"carousel_next\":\"Carousel Next\",\"carousel_previous\":\"Carousel Previous\",\"skip_carousel\":\"Skip carousel\"},\"common\":{\"ad\":\"ad\",\"add_a_new_payment_method\":\"Add a new payment method\",\"added_by\":\"Added by\",\"back\":\"Back\",\"back_to_top\":\"Back to top\",\"cancel\":\"Cancel\",\"cancel_anytime\":\"Cancel anytime.\",\"close\":\"Close\",\"close_dialog\":\"Close dialog\",\"delete\":\"Delete\",\"description\":\"Description\",\"do_not_ask_me_again\":\"Do not ask me again\",\"download\":\"Download\",\"email_address\":\"Email address\",\"error\":\"Error\",\"errors\":{\"could_not_complete_request\":\"We couldn\'t complete your request\",\"failed_to_delete_review\":\"Review was not deleted. Please try again.\",\"failed_to_load\":\"Failed to load, try again\",\"failed_to_remove_title\":\"Failed to remove title\",\"failed_to_save_review\":\"Your review was not saved. Please try again.\",\"failed_to_save_review_vote\":\"Your vote was not saved. Please try again.\",\"failed_to_save_title\":\"Failed to save title\",\"please_try_again_later\":\"Please try again later.\"},\"forms\":{\"at_least_10_characters\":\"(at least 10 characters)\",\"email\":\"Email\",\"error\":\"Error\",\"invalid\":\"Invalid\",\"invalid_email\":\"Please enter a valid email\",\"name\":\"Name\",\"optional\":\"(optional)\",\"password\":\"Password\",\"please_enter_a_password\":\"Please enter a password\",\"please_enter_an_email\":\"Please enter an email\",\"required\":\"(required)\"},\"hide\":\"Hide\",\"info\":\"Information\",\"issue\":\"Issue\",\"key_insights\":\"Key insights from\",\"learn_more\":\"Learn more\",\"length\":\"Length\",\"library\":{\"add_to_list\":{\"success_message\":\"Added to {{collection_name}}\"},\"add_with_title\":\"Save {{title}} for later\",\"remove_with_title\":\"Remove {{title}} from saved\",\"sign_up_to_save\":\"Sign up to save this title\"},\"listen_free_for_30_days\":\"Listen free for {{trialDuration}} days\",\"listen_now\":\"Listen now\",\"listen_on_everand\":\"Listen on Everand\",\"load_more\":\"Load more\",\"more\":\"More\",\"more_about_this_title\":\"More about this title\",\"new_to_scribd\":\"New to Scribd?\",\"notice\":\"Notice\",\"opens_in_a_new_window\":\"opens in a new window\",\"or\":\"or\",\"pause\":\"Pause\",\"play_preview\":\"Play preview\",\"play_sample\":\"Play sample\",\"preferred_language_set_to_language\":\"Preferred language set to {{language}}\",\"progress\":{\"listened\":\"listened\",\"read\":\"read\"},\"rating\":\"rating\",\"ratings\":\"ratings\",\"read_count\":\"{{count}} read\",\"read_count_plural\":\"{{count}} reads\",\"read_less\":\"Read less\",\"read_more\":\"Read more\",\"read_now\":\"Read now\",\"read_on_everand\":\"Read on Everand\",\"read_on_scribd\":\"Read on Scribd\",\"read_preview\":\"Read preview\",\"recommended\":\"Recommended\",\"remove\":\"Remove\",\"remove_from_saved\":\"Remove from Saved\",\"removed_from_saved\":\"Removed from Saved\",\"removed_from_your_saved_list\":\"Removed from your saved list.\",\"restart_subscription\":\"Restart subscription\",\"resume_subscription\":\"Resume subscription\",\"save\":\"Save\",\"save_for_later\":\"Save for later\",\"saved\":\"Saved\",\"selected\":\"(selected)\",\"send_email\":\"Send email\",\"share_on\":{\"email\":\"Share via email\",\"email_mail_client\":\"Share with email, opens mail client\",\"facebook\":\"Share on Facebook\",\"facebook_new_window\":\"Share on Facebook, opens a new window\",\"linkedin\":\"Share on LinkedIn\",\"linkedin_new_window\":\"Share on LinkedIn, opens a new window\",\"pinterest\":\"Share on Pinterest\",\"pinterest_new_window\":\"Share on Pinterest, opens a new window\",\"twitter\":\"Share on Twitter\",\"twitter_new_window\":\"Share on Twitter, opens a new window\"},\"show\":\"Show\",\"sign_in\":\"Sign in\",\"sign_out\":\"Sign out\",\"songbook\":\"Songbook\",\"start_your_subscription\":\"Start your subscription\",\"success\":\"Success\",\"success_exclamation\":\"Success!\",\"title_author_separator\":\"by\",\"undo\":\"Undo\",\"undo_title_removed_from_saved\":\"Undo {{title}} removed from Saved\",\"update\":\"Update\",\"uploaded_by\":\"Uploaded by\",\"welcome_back\":\"Welcome back\",\"welcome_back_exclamation\":\"Welcome back!\",\"worlds_fascinating_library\":\"The world\'s most fascinating library\"},\"competitor_matrix\":{\"last_updated_aug\":\"Last updated on August 5, 2021\",\"million_ebooks\":\"1,000,000+ ebooks\",\"million_magazine_news_articles\":\"1,000,000+ magazine \\u0026 news articles\",\"no\":\"No\",\"thousands_audiobooks\":\"200,000+ audiobooks\",\"title\":\"See why readers choose Scribd\",\"yes\":\"Yes\"},\"content_lengths\":{\"articles_with_count\":\"{{count, locale}} article\",\"articles_with_count_plural\":\"{{count, locale}} articles\",\"hour_with_count\":\"{{count, locale}} hour\",\"hour_with_count_plural\":\"{{count, locale}} hours\",\"minute_with_count\":\"{{count, locale}} minute\",\"minute_with_count_plural\":\"{{count, locale}} minutes\",\"page_with_count\":\"{{count, locale}} page\",\"page_with_count_plural\":\"{{count, locale}} pages\",\"songs_with_count\":\"{{count, locale}} song\",\"songs_with_count_plural\":\"{{count, locale}} songs\"},\"content_preview\":{\"leaving_everand\":\"Leaving Everand on {{date}}\",\"newly_added_to_everand_only_on_our_new_plans\":\"Newly added to Everand — only on our new plans\"},\"content_types\":{\"series\":\"Series\"},\"doc_download_modal\":{\"check_out_these\":\"Check out these other great titles\",\"continue_reading_ad_free_or_upgrade\":\"Continue reading ad-free with your trial or upgrade to a subscription to download hundreds of documents.\",\"download_as\":\"Download as:\",\"download_document\":\"Download document\",\"download_hundreds_of_documents\":\"Download hundreds of documents. Read ad-free. Access to Scribd, Slideshare, and Everand.\",\"download_iframe\":\"Download iframe\",\"download_started\":\"Your download has started\",\"enrolling_in_automatic_payments_annual_with_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your membership starting at the end of your free trial and charge the membership fee (currently {{price}} + tax per year) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"enrolling_in_automatic_payments_annual_without_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your membership starting at the end of your free trial and charge the membership fee (currently {{price}}/year) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"enrolling_in_automatic_payments_monthly_with_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your membership starting at the end of your free trial and charge the membership fee (currently {{price}} + tax per month) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"enrolling_in_automatic_payments_monthly_without_tax_html\":\"By clicking the “{{buttonCopy}}” button, you agree to our \\u003ca href=\\\"{{termsUrl}}\\\" target=\\\"_blank\\\"\\u003eTerms of Use\\u003c/a\\u003e, \\u003ca href=\\\"{{privacyUrl}}\\\" target=\\\"_blank\\\"\\u003ePrivacy Statement\\u003c/a\\u003e, that you are over 18, and that {{localEntity}} will automatically continue your membership starting at the end of your free trial and charge the membership fee (currently {{price}}/month) to your payment method until you cancel. You may cancel at any time to avoid future charges. To cancel, please visit our \\u003ca href=\'{{howToCancelSubscriptionUrl}}\' target=\\\"_blank\\\"\\u003eCancel Instructions\\u003c/a\\u003e.\",\"membership_paused_html\":\"Your membership is currently paused until {{resumeMembershipDate}}. Would you like to resume your membership now to download \\u003cem\\u003e{{title}}\\u003c/em\\u003e?\",\"not_available\":\"This document is not available for download\",\"subscribe\":\"Subscribe\",\"subscription_payment_processed\":\"Subscription payment processed\",\"there_was_an_issue_processing_html\":\"There was an issue processing your request. \\u003ca href=\\\"{{supportPath}}\\\" target=\\\"_blank\\\"\\u003eContact customer service\\u003c/a\\u003e to continue.\",\"there_was_an_issue_with_payment_html\":\"There was an issue with your payment method. \\u003ca href=\\\"{{resubscribePath}}\\\"\\u003eUpdate payment details\\u003c/a\\u003e to continue.\",\"this_is_your_last_free_download_in_your_trial_with_styling\":\"This is your last free download. After your trial you can \\u003cspan class=\'thousandsDocuments\'\\u003edownload thousands of documents\\u003c/span\\u003e per month.\",\"this_is_your_number_of_downloads_in_your_trial\":\"This is your first of {{count}} free downloads in your trial. After your trial you can download thousands of documents per month.\",\"upgrade_your_trial\":\"Upgrade your trial\",\"uploaded\":\"Uploaded By\",\"you_have_downloads_remaining\":\"You have {{count}} download remaining in your free trial.\",\"you_have_downloads_remaining_plural\":\"You have {{count}} downloads remaining in your free trial.\",\"you_have_last_free_download_in_your_trial\":\"This is your last free download of your trial. After your trial you can download thousands of documents per month.\",\"you_have_number_of_downloads_in_your_trial\":\"You have {{count}} downloads remaining in your free trial. After your trial you can download thousands of documents per month.\",\"you_have_your_last_download_in_your_trial\":\"This is your last free download of your trial. After your trial you can download thousands of documents per month.\",\"you_have_your_number_of_downloads_in_your_trial_with_styling\":\"You have {{count}} downloads remaining in your free trial. After your trial you can \\u003cspan class=\'thousandsDocuments\'\\u003edownload thousands of documents\\u003c/span\\u003e per month.\",\"you_used_all_downloads\":\"You used all of the downloads in your free trial.\",\"you_will_be_billed\":\"You will be billed {{amount}} today\",\"zero_of_count_downloads_remaining_in_your_trial\":\"0 of {{count}} free downloads remaining in your trial\"},\"doc_page\":{\"download_document\":\"Download document\",\"download_unavailable\":\"Download unavailable\"},\"doc_preview\":{\"views\":\"{{formatted_views}} views\"},\"end_of_preview\":{\"view_plan_options\":\"View plan options\"},\"errors\":{\"action_incomplete_heading\":\"Action Incomplete\",\"action_incomplete_message\":\"Oops! We\'re sorry, but we couldn\'t complete the action you requested at this time. We appreciate your patience as we come up with a solution.\",\"something_went_wrong\":\"Something went wrong, please try again.\"},\"everand\":{\"cta\":{\"download_free_days\":\"Download free for {{trialDuration}} days\",\"read_free_for_30_days\":\"Read free for 30 days\"}},\"everand_banner\":{\"visit_everand\":\"Visit Everand.\"},\"footer\":{\"about\":\"About\",\"about_scribd_inc\":\"About Scribd, Inc.\",\"accessibility\":\"Accessibility\",\"cancel_contract\":\"Cancel contracts here\",\"contact_us\":\"Contact us\",\"cookie_preferences\":\"Cookie Preferences\",\"copyright\":\"Copyright\",\"copyright_copy_current_year_scribd\":\"Copyright \\u0026copy; {{currentYear}} Scribd Inc.\",\"do_not_sell_share_info\":\"Do not sell or share my personal information\",\"everand_books_audiobooks\":\"Everand: Ebooks \\u0026 Audiobooks\",\"footer_menu\":\"Footer menu\",\"gifts\":\"Gifts\",\"help_faq\":\"Help / FAQ\",\"join_our_team_exclamation\":\"Join our team!\",\"legal\":\"Legal\",\"our_blog\":\"Our blog\",\"privacy\":\"Privacy\",\"publishers\":\"Publishers\",\"purchase_help\":\"Purchase help\",\"redeem_gift_card\":\"Redeem gift card\",\"scribd_-_download_on_the_app_store\":\"Scribd - Download on the App Store\",\"scribd_-_get_it_on_google_play\":\"Scribd - Get it on Google Play\",\"scribd_-_get_it_on_kindle_fire\":\"Scribd for Kindle Fire\",\"social\":\"Social\",\"support\":\"Support\",\"terms\":\"Terms\"},\"get_app_modal\":{\"an_error_occurred_please_try_again\":\"An error occurred please try again\",\"an_error_occurred_please_try_an\":\"An error occurred please try an email\",\"enter_your_email\":\"Enter your email\",\"enter_your_phone_or_email\":\"Enter your phone or email\",\"get_the_app_to_read\":\"Get the app to read anytime, anywhere.\",\"get_the_app_to_read_and_listen\":\"Get the app to read and listen anytime, anywhere.\",\"link_sent_please_check_your_mobile\":\"Link sent! Please check your mobile device\",\"listen_offline_with_app\":\"Listen offline with the app\",\"phone_or_email\":\"Phone or email\",\"please_enter_a_valid_email\":\"Please enter a valid email\",\"please_enter_a_valid_phone_number\":\"Please enter a valid phone number\",\"please_enter_a_valid_phone_number_or_email\":\"Please enter a valid phone number or email\",\"read_offline_with_app\":\"Read offline with the app\",\"send\":\"Send\"},\"listen_button\":{\"listen_continue\":\"Continue listening\",\"listen_start\":\"Start listening\"},\"lists\":{\"curated_by\":\"Curated by\",\"view_total_titles\":\"View {{count}} title\",\"view_total_titles_plural\":\"View {{count}} titles\"},\"loading_button\":{\"tooltip_content\":{\"loading\":\"Loading...\"}},\"login\":{\"join_lightbox\":{\"email\":\"Email\",\"we_couldn_t_complete_your_request\":\"We couldn\'t complete your request\"}},\"mobile_bottom_navigation_tabs\":{\"active\":\", active\",\"home\":\"Home\",\"quick_navigation\":\"Quick navigation\"},\"modal\":{\"opt_in\":{\"stay_in_the_loop\":\"Stay in the loop\"},\"upsell\":{\"cancel_anytime\":\"Cancel anytime\",\"continue_with_free_trial\":\"Continue with {{trialDuration}}-day free trial\",\"continue_with_limited_access\":\"Continue with limited access\",\"or\":\"or\"}},\"navigation\":{\"sidebar\":{\"selected\":\", selected\"},\"upload\":\"Upload\"},\"plan_card\":{\"per_month\":\"/month\"},\"plan_type\":{\"plus_annual\":\"Plus Annual\",\"plus_monthly\":\"Plus Monthly\",\"standard_annual\":\"Standard Annual\",\"standard_monthly\":\"Standard Monthly\"},\"plans\":{\"get_more_unlocks\":\"Get more unlocks\",\"moving_to_plus\":\"Moving to Plus on {{date}}\",\"next_unlock_available\":\"Your next unlock will be available on {{refresh_date}}\",\"no_unlocks_available\":\"0 unlocks available\",\"num_unlocks_available\":\"{{count}} unlock available.\",\"num_unlocks_available_plural\":\"{{count}} unlocks available.\",\"num_unlocks_available_renew_monthly\":\"{{count}} unlock available. Unlocks renew monthly on {{refresh_date}} and do not carry over.\",\"num_unlocks_available_renew_monthly_plural\":\"{{count}} unlocks available. Unlocks renew monthly on {{refresh_date}} and do not carry over.\",\"renew_and_upgrade\":\"Renew and upgrade to Plus to unlock this title.\",\"renew_get_next_unlock\":\"Renew your subscription to get your next unlock on {{refresh_date}}.\",\"resume_and_upgrade\":\"Resume and upgrade to Plus to unlock this title.\",\"switch_back_to_plus_to_get_your_next_unlock\":\"Switch back to Plus to get your next unlock on {{renew_date}}.\",\"unlimited\":\"Unlimited\",\"unlock_title\":\"Unlock title\",\"unlocked\":\"Unlocked\",\"unlocks_available_expire_on_date_html\":\"{{count}} unlock available. Unused unlocks expire on {{expire_date}}.\",\"unlocks_available_expire_on_date_html_plural\":\"{{count}} unlocks available. Unused unlocks expire on {{expire_date}}.\",\"unused_unlocks_expire_on_date\":\"Unused unlocks expire on {{expire_date}}.\",\"upgrade_to_unlock\":\"Upgrade to Plus to unlock\",\"youve_unlocked_this_title\":\"You’ve unlocked this title.\"},\"play_sample_button\":{\"pause\":\"Pause\",\"play_sample\":\"Play sample\"},\"podcast_episode\":{\"from\":\"From\"},\"podcast_series\":{\"num_episodes\":\"{{ count }} episode\",\"num_episodes_plural\":\"{{ count }} episodes\",\"num_podcast_episodes\":\"{{count, locale}} podcast episode\",\"num_podcast_episodes_plural\":\"{{count, locale}} podcast episodes\"},\"promos\":{\"annual_offer\":{\"annual\":\"Premium Annual\",\"monthly\":\"Premium Monthly\",\"youre_all_set_html\":\"You\'re all set! You’ve updated your plan. \\u003ca href={{account_settings_url}}\\u003eView your plan\\u003c/a\\u003e in your account.\"}},\"react\":{\"button_menu\":{\"close_menu\":\"Close menu\"},\"modals\":{\"delete_item_in_list\":{\"cancel\":\"Cancel\",\"delete\":\"Delete\",\"do_not_ask_me_again\":\"Do not ask me again\",\"removing_from_saved_will_also_delete\":\"Removing from Saved will also delete the title from your lists.\",\"this_title_is_also_in_a\":\"This title is also in a list.\"}},\"save_button\":{\"failed_to_remove_title\":\"Failed to remove title\",\"failed_to_save_title\":\"Failed to save title\",\"remove_short_title_from_saved\":\"Remove {{short_title}} from Saved\",\"save_short_title_for_later\":\"Save {{short_title}} For Later\",\"sign_up_to_save\":\"Sign up to save this title\"},\"sharing_buttons\":{\"check_out_props_share_title_on_scribd\":\"Check out {{props_share_title}} on Scribd\",\"i_m_reading_props_document_collection_name_on_scribd_props_document_collection_url\":\"I’m reading {{props_document_collection_name}} on Scribd: {{props_document_collection_url}}\",\"read_props_document_collection_name_on_scribd\":\"Read {{props_document_collection_name}} on Scribd\",\"share_on_facebook_opens_a_new\":\"Share on Facebook, opens a new window\",\"share_on_linkedin_opens_a_new\":\"Share on LinkedIn, opens a new window\",\"share_on_twitter_opens_a_new\":\"Share on Twitter, opens a new window\",\"share_with_email_opens_mail_client\":\"Share with Email, opens mail client\",\"sharing_options\":\"Sharing Options\"}},\"reading_progress\":{\"base\":{\"we_ve_moved_you_to_where_you\":\"We\'ve moved you to where you read on your {{progress_device_name}}\"}},\"renew_upgrade_modal\":{\"please_renew_your_subscription_first_in\":\"Please renew your subscription first in order to upgrade to Plus to unlock this title.\",\"renew_and_upgrade_to_unlock\":\"Renew and upgrade to unlock this title\",\"renew_subscription\":\"Renew subscription\"},\"resume_membership\":\"Resume subscription\",\"save_button\":{\"save\":\"Save\",\"saved\":\"Saved\"},\"skip_link\":{\"skip_content\":\"Skip content\"},\"social_buttons\":{\"scribd_on_facebook_aria_label\":\"Scribd on Facebook\",\"scribd_on_instagram_aria_label\":\"Scribd on Instagram\",\"scribd_on_pinterest_aria_label\":\"Scribd on Pinterest\",\"scribd_on_twitter_aria_label\":\"Scribd on Twitter\"},\"star_ratings\":{\"clear_rating\":\"Clear rating\",\"i_didnt_like_it_at_all\":\"I didn\'t like it at all\",\"i_didnt_like_it_that_much\":\"I didn\'t like it that much\",\"i_liked_it\":\"I liked it\",\"i_loved_it\":\"I loved it\",\"i_thought_it_was_ok\":\"I thought it was OK\",\"no_ratings\":\"0 ratings\",\"rate_as_rating_out_of_5\":\"Rate as {{value}} out of 5\",\"rating_rating_to_display_out_of_5_stars\":\"Rating: {{ratingToDisplay}} out of 5 stars\",\"ratings\":\"rating\",\"ratings_plural\":\"ratings\",\"saved\":\"Saved!\",\"selected\":\"(selected)\",\"user_rating_star_rating_saved\":\"{{userRating}} star rating saved\"},\"start_exploring\":\"Start exploring\",\"text_links\":{\"all_categories\":\"All categories\",\"related_authors\":\"Related authors\",\"view_all_categories_in_category\":\"View all categories in {{category}}\",\"view_fewer\":\"View fewer\",\"view_more\":\"View More\"},\"time_remaining\":{\"hours\":\"{{count}} hr left\",\"hours_plural\":\"{{count}} hrs left\",\"minutes\":\"{{count}} min left\",\"minutes_plural\":\"{{count}} mins left\",\"pages\":\"{{count}} page left\",\"pages_plural\":\"{{count}} pages left\"},\"trial\":{\"cancel_anytime\":\"Cancel anytime.\"},\"trial_duration\":{\"first_days_free\":\"Your first {{trialDuration}} days are free.\",\"read_free_days\":\"Read free for {{trialDuration}} days\",\"start_trial_days\":\"Start your free {{trialDuration}} days\"}},\"slideshare\":{\"accessibility\":{\"logo\":\"SlideShare, a Scribd company\"},\"checkout\":{\"hero_banner_title\":\"Your SlideShare presentation\"},\"join\":{\"ad_free_sign_up_sub_title\":\"You’ll get instant access to millions of presentations, documents, ebooks, audiobooks, magazines, podcasts and more. We’ll remind you before your trial ends.\",\"ad_free_sign_up_title\":\"To enjoy SlideShare ad-free, sign up for a free {{trialDuration}}-day Scribd trial\",\"already_have_scribd_account\":\"Already have a Scribd account?\",\"create_account\":\"Create a Scribd account to continue\",\"get_instant_access\":\"Get instant access to millions of documents, ebooks, audiobooks, magazines, podcasts, and more. All in one subscription.\",\"need_account_sign_in_slideshare\":\"You can use this account to access SlideShare and Scribd.\",\"to_continue_reading\":\"To continue reading on SlideShare, sign up for a {{trialDuration}} day free Scribd trial\",\"trial_duration\":\"To download on SlideShare, sign up for a {{trialDuration}} day free Scribd trial\"},\"login\":{\"sign_in\":\"Sign in with your Scribd account to continue\"}},\"subscribe_now\":{\"modal\":{\"continue_to_scribd\":\"Continue to Scribd\",\"looking_for_our_ebooks_audiobooks\":\"Looking for our ebooks and audiobooks?\",\"scribd_recently_launched_everand\":\"Scribd recently launched \\u003cem\\u003eEverand\\u003c/em\\u003e as your new home for ebooks, audiobooks, magazines, sheet music, and podcasts. Scribd is still your home for community-uploaded documents.\",\"visit_everand\":\"Visit Everand\",\"welcome_to_scribd\":\"Welcome to Scribd!\"}},\"unified_checkout\":{\"cart_info\":{\"starting_date\":\"Starting {{date}}\"},\"change_plans\":{\"current_plan\":\"Current plan\",\"upgrade_to_plus\":\"Upgrade to Plus\"},\"payment_options\":{\"current_payment\":\"Current payment method\"}},\"webpack\":{\"doc_page\":{\"src\":{\"App\":{\"Page\":{\"BlurPromo\":{\"BlurPromo\":{\"become_a_scribd_member_to_read\":\"Become a Scribd member to read and download full documents.\",\"cancel_anytime\":\"Cancel anytime\",\"continue_for_free\":\"Continue for Free\",\"continue_reading_with_trial\":\"Continue Reading with Trial\",\"or\":\"Or\",\"update_payment\":\"Update Payment\",\"update_payment_for_full_access\":\"Update payment for full access.\",\"upload_to_download\":\"Upload to Download\",\"upload_your_documents_to_download\":\"Upload your documents to download.\"}},\"Body\":{\"Body\":{\"share_this_document\":\"Share this document\"},\"FixedViewportBottomComponents\":{\"CollapseButton\":{\"CollapseButton\":{\"click_to_collapse_related_titles\":\"Click to collapse Related Titles\",\"click_to_expand_related_titles\":\"Click to expand Related Titles\"}},\"ViewInStorePromo\":{\"ViewInStorePromo\":{\"get_our_free_app\":\"Get our free app\",\"get_scribd_for_your_mobile_device\":\"Get Scribd for your mobile device.\"}}},\"Metadata\":{\"Extra\":{\"Extra\":{\"original_title_no_colon\":\"Original Title\"}}},\"Toolbar\":{\"Toolbar\":{\"jump_to_page\":\"Jump to Page\"}}},\"annotations\":{\"AnnotationPopover\":{\"AnnotationPopover\":{\"annotation_text_page_annotation_page_nread_more\":\"\\\"{{annotation_text}}…\\\" (page {{annotation_page}})\\\\nRead more:\"}},\"NoteEditor\":{\"NoteEditor\":{\"add_note\":\"Add Note\",\"cancel\":\"Cancel\",\"delete_note\":\"Delete note\",\"note\":\"Note\",\"note_note_group_notes_indexof_active_note_id_1_of_note_group_notes_length\":\"Note {{note_group_notes_indexof_active_note_id_1}} of {{note_group_notes_length}}\",\"save\":\"Save\",\"write_a_note\":\"Write a note…\"}}},\"modals\":{\"Description\":{\"Description\":{\"document_information\":\"Document Information\"}},\"ShareQuote\":{\"ShareQuote\":{\"share_quote\":\"Share Quote\"}}}}},\"body\":{\"sidebar\":{\"on_created_at\":\"on {{created_at}}\"}},\"shared\":{\"actions\":{\"modals\":{\"redirecting\":\"Redirecting...\",\"unable_to_unpause_account_please_try\":\"Unable to unpause account. Please try again\"}},\"base_page\":{\"an_error_occurred_please_try_again\":\"An error occurred please try again\"},\"components\":{\"modals\":{\"Download\":{\"Receipt\":{\"Receipt\":{\"uploaded_by_this_props_document_author_name\":\"Uploaded by {{this_props_document_author_name}}\"}}}}},\"download_button\":{\"button\":{\"download\":\"Download\"}},\"store\":{\"actions\":{\"modals\":{\"subscribe_to_continue_reading\":\"Subscribe to Continue Reading\"}}}}}}}}}}");Scribd.e2e_enabled = false;</script><script type="application/javascript">function prefetchResource(u){var x = new XMLHttpRequest();x.open("GET", u, true);x.send()};</script></body></html>