Cargando…

JavaScript for absolute beginners /

If you are new to both JavaScript and programming, this hands-on book is for you. Rather than staring blankly at gobbledygook, you'll explore JavaScript by entering and running hundreds of code samples in Firebug, a free JavaScript debugger. Then in the last two chapters, you'll leave the...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: McNavage, Terry
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [Berkeley, CA] : Apress, ©2010.
Colección:Expert's voice in Web development.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ia 4500
001 OR_ocn709780389
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 110329s2010 nyua of 001 0 eng d
010 |a  2011293972 
040 |a UMI  |b eng  |e pn  |c UMI  |d VLB  |d GW5XE  |d E7B  |d COO  |d EBLCP  |d OCLCQ  |d DEBSZ  |d B24X7  |d YDXCP  |d IDEBK  |d OCLCF  |d BEDGE  |d OCLCQ  |d MHW  |d NUI  |d OCL  |d OCLCQ  |d Z5A  |d LIV  |d OCLCQ  |d MERUC  |d ESU  |d VT2  |d OCLCQ  |d IOG  |d N$T  |d CEF  |d U3W  |d AU@  |d OCLCQ  |d WYU  |d YOU  |d UAB  |d LEAUB  |d STF  |d UKAHL  |d OCLCQ  |d DCT  |d ERF  |d WURST  |d OCLCQ  |d BRF  |d COM  |d OCLCO  |d OCLCQ  |d INARC  |d OCLCO 
019 |a 755069371  |a 759865565  |a 765143867  |a 785726165  |a 1005762188  |a 1058075614  |a 1063968847  |a 1087328417  |a 1103252118  |a 1111048342  |a 1112533721  |a 1129360572  |a 1153037612  |a 1192345054  |a 1240515091 
020 |a 9781430272182  |q (electronic bk.) 
020 |a 143027218X  |q (electronic bk.) 
020 |z 9781430272199 
020 |z 1430272198 
024 7 |a 10.1007/978-1-4302-7218-2.  |2 doi 
029 1 |a AU@  |b 000048697760 
029 1 |a AU@  |b 000053271309 
029 1 |a AU@  |b 000060583501 
029 1 |a AU@  |b 000062475569 
029 1 |a DEBSZ  |b 36847366X 
029 1 |a DEBSZ  |b 397161611 
029 1 |a NZ1  |b 13935712 
029 1 |a AU@  |b 000067093534 
035 |a (OCoLC)709780389  |z (OCoLC)755069371  |z (OCoLC)759865565  |z (OCoLC)765143867  |z (OCoLC)785726165  |z (OCoLC)1005762188  |z (OCoLC)1058075614  |z (OCoLC)1063968847  |z (OCoLC)1087328417  |z (OCoLC)1103252118  |z (OCoLC)1111048342  |z (OCoLC)1112533721  |z (OCoLC)1129360572  |z (OCoLC)1153037612  |z (OCoLC)1192345054  |z (OCoLC)1240515091 
037 |a CL0500000086  |b Safari Books Online 
050 4 |a HF5548.5.J38  |b M362 2010 
072 7 |a COM  |x 051260  |2 bisacsh 
072 7 |a UY.  |2 bicssc 
082 0 4 |a 005.2/762  |2 23 
049 |a UAMI 
100 1 |a McNavage, Terry. 
245 1 0 |a JavaScript for absolute beginners /  |c Terry McNavage. 
260 |a [Berkeley, CA] :  |b Apress,  |c ©2010. 
300 |a 1 online resource (xxiii, 477 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file  |b PDF  |2 rda 
490 1 |a The expert's voice in web development 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed November 30, 2017). 
520 |a If you are new to both JavaScript and programming, this hands-on book is for you. Rather than staring blankly at gobbledygook, you'll explore JavaScript by entering and running hundreds of code samples in Firebug, a free JavaScript debugger. Then in the last two chapters, you'll leave the safety of Firebug and hand-code an uber cool JavaScript application in your preferred text editor. Written in a friendly, engaging narrative style, this innovative JavaScript tutorial covers the following essentials: Core JavaScript syntax, such as value types, operators, expressions, and statements provided by ECMAScript. Features for manipulating XHTML, CSS, and events provided by DOM. Object-oriented JavaScript, including prototypal and classical inheritance, deep copy, and mixins. Closure, lazy loading, advance conditional loading, chaining, currying, memoization, modules, callbacks, recursion, and other powerful function techniques. Encoding data with JSON or XML. Remote scripting with JSON-P or XMLHttpRequest Drag-and-drop, animated scrollers, skin swappers, and other cool behaviors. Optimizations to ensure your scripts run snappy. Formatting and naming conventions to prevent you from looking like a greenhorn. New ECMAScript 5, DOM 3, and HTML 5 features such as Object.create(), Function.prototype.bind(), strict mode, querySelector(), querySelectorAll(), and getElementsByClassName(). As you can see, due to its fresh approach, this book is by no means watered down. Therefore, over the course of your journey, you will go from JavaScript beginner to wizard, acquiring the skills recruiters desire. 
505 0 |a Title Page; Copyright Page; Dedication Page; Table of Contents; About the Author; About the Technical Reviewers; Acknowledgments; Preface; Opening Firebug; Enabling Firebug; Command Line; Command Editor; CHAPTER 1 Representing Data with Values; What Are Value Types?; Creating a String Literal; Commenting Code; Gluing Strings Together with the + Operator; Creating a Number Literal; Creating a Boolean Literal; Naming a Value with an Identifier; Can I Name a Variable Anything I Want?; Some Valid Identifiers Are Already Taken; Creating an Object Literal; Naming Members with Identifiers. 
505 8 |a Creating an Array LiteralCreating a Function Literal; Summary; CHAPTER 2 Type Conversion; String Members; Determining the Number of Characters; Decoding or Encoding Characters; Converting Case; Locating a Substring; Clipping a Substring; Replacing a Substring; Splitting a String into an Array of Smaller Strings; Searching with Regular Expressions; Explicitly Creating Wrappers; Converting a Value to Another Type; Converting a Value to a Number; Converting a Value to a String; Methods for Converting a Number to a String; Putting Off Learning RegExp Syntax; Summary; CHAPTER 3 Operators. 
505 8 |a Conditionally Returning One of Two ValuesMaking Two Expressions Count as One; Deleting a Member, Element, or Variable; Summary; CHAPTER 4 Controlling Flow; Writing an if Condition; Appending an else Clause; To Wrap or Not to Wrap; Coding Several Paths with the else if Idiom; Controlling Flow with Conditional Expressions; Taking One of Several Paths with a Switch; Writing a while Loop; Aborting an Iteration but Not the Loop; Replacing Break with Return in a Function; Writing a do while loop; Writing a for Loop; Enumerating Members with a for in Loop; Snappier Conditionals; Snappier Loops. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a JavaScript (Computer program language)  |v Handbooks, manuals, etc. 
650 6 |a JavaScript (Langage de programmation)  |v Guides, manuels, etc. 
650 7 |a COMPUTERS  |x Programming Languages  |x JavaScript.  |2 bisacsh 
650 7 |a Informatique.  |2 eclas 
650 7 |a JavaScript (Computer program language)  |2 fast 
653 0 0 |a computerwetenschappen 
653 0 0 |a computer sciences 
653 1 0 |a Information and Communication Technology (General) 
653 1 0 |a Informatie- en communicatietechnologie (algemeen) 
655 2 |a Handbook 
655 7 |a handbooks.  |2 aat 
655 7 |a Handbooks and manuals  |2 fast 
655 7 |a Handbooks and manuals.  |2 lcgft 
655 7 |a Guides et manuels.  |2 rvmgf 
776 0 8 |i Print version:  |a McNavage, Terry.  |t JavaScript for absolute beginners.  |d [New York] : Apress, ©2010  |z 9781430272199 
830 0 |a Expert's voice in Web development. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781430272199/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Internet Archive  |b INAR  |n javascriptforabs0000mcna 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26905566 
938 |a Books 24x7  |b B247  |n bks00040179 
938 |a EBL - Ebook Library  |b EBLB  |n EBL798579 
938 |a ebrary  |b EBRY  |n ebr10494149 
938 |a EBSCOhost  |b EBSC  |n 426970 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis26005089 
938 |a YBP Library Services  |b YANK  |n 7104480 
994 |a 92  |b IZTAP