Cargando…

JavaScript essentials for SAP ABAP developers : a guide to mobile and desktop application development /

Easily master JavaScript (JS) with this quick guide and develop mobile and desktop applications for SAP Fiori. This book equips ABAP/SAP developers with the essential topics to get started with JS. The focus of JavaScript Essentials for SAP ABAP Developers is on the parts of the JS language that are...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Zaidi, Rehan
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [New York, NY] : Apress, [2017]
Temas:
Acceso en línea:Texto completo
Texto completo

MARC

LEADER 00000cam a2200000 i 4500
001 EBOOKCENTRAL_ocn990802713
003 OCoLC
005 20240329122006.0
006 m o d
007 cr cnu|||unuuu
008 170623s2017 nyu o 001 0 eng d
010 |a  2017946310 
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d YDX  |d N$T  |d EBLCP  |d GW5XE  |d UAB  |d AZU  |d UPM  |d MERER  |d ESU  |d OCLCQ  |d COO  |d OCLCQ  |d VT2  |d IOG  |d K6U  |d IDB  |d MERUC  |d LIV  |d U3W  |d D6H  |d CAUOI  |d OCLCQ  |d VVB  |d OCLCF  |d KSU  |d WYU  |d AU@  |d UMI  |d STF  |d UKMGB  |d TOH  |d G3B  |d AUD  |d OCLCQ  |d UKAHL  |d C6I  |d LEAUB  |d HS0  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCL  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCL  |d OCLCQ 
015 |a GBB8L6675  |2 bnb 
016 7 |a 019127122  |2 Uk 
019 |a 996425695  |a 999530839  |a 1004388628  |a 1005825006  |a 1011956534  |a 1021264330  |a 1062727996  |a 1086534165  |a 1162681120 
020 |a 9781484222201  |q (electronic bk.) 
020 |a 1484222202  |q (electronic bk.) 
020 |a 1484222199 
020 |a 9781484222195 
020 |z 9781484222195 
024 7 |a 10.1007/978-1-4842-2220-1  |2 doi 
024 3 |a 9781484222195 
029 1 |a AU@  |b 000060467206 
029 1 |a CHNEW  |b 000962040 
029 1 |a CHVBK  |b 491706707 
029 1 |a UKMGB  |b 019127122 
035 |a (OCoLC)990802713  |z (OCoLC)996425695  |z (OCoLC)999530839  |z (OCoLC)1004388628  |z (OCoLC)1005825006  |z (OCoLC)1011956534  |z (OCoLC)1021264330  |z (OCoLC)1062727996  |z (OCoLC)1086534165  |z (OCoLC)1162681120 
037 |a 9781484222195  |b 00152887 
050 4 |a QA76.73.J39 
072 7 |a COM  |x 051260  |2 bisacsh 
072 7 |a UB  |2 bicssc 
082 0 4 |a 005.2/762  |2 23 
049 |a UAMI 
100 1 |a Zaidi, Rehan. 
245 1 0 |a JavaScript essentials for SAP ABAP developers :  |b a guide to mobile and desktop application development /  |c Rehan Zaidi. 
264 1 |a [New York, NY] :  |b Apress,  |c [2017] 
300 |a 1 online resource 
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 
500 |a Includes index. 
520 |a Easily master JavaScript (JS) with this quick guide and develop mobile and desktop applications for SAP Fiori. This book equips ABAP/SAP developers with the essential topics to get started with JS. The focus of JavaScript Essentials for SAP ABAP Developers is on the parts of the JS language that are useful from the perspective of an ABAP developer. The book starts with a brief intro to HTML, the basics of JS, and how to create and run a simple JS program. It then dives into the details of the language, showing how to make simple programs. It covers loops in detail, mathematical operations, and string and regular expressions in JS, as well as a taste of functions, followed by objects and object-oriented programming in JavaScript. The book provides: Sample code and screenshots to help you fully understand JSA chapter on JS best practices and recommendationsDifferences and comparisons of the elements and data structures of ABAP and JavaScript to help you quickly master the material What You'll Learn Create and run a simple JavaScript programUnderstand loops, operations, and expressionsMaster the Create and Use functionsUse objects and object-oriented programming in JSApply the best practices of JS programming Who This Book Is For SAP programmers and developers, ABAP users and developers, and university students learning ABAP and JavaScript. 
588 0 |a Vendor-supplied metadata. 
505 0 |a At a Glance; Contents; About the Author; About the Technical Reviewer; Acknowledgments; Introduction; Chapter 1: Introduction to JavaScript; Brief JavaScript Background; Inside a JavaScript Program; Creating a Simple JS Program; A Quick Look at HTML; Putting JavaScript in HTML Code; Writing JS Code Within the and Tags; Writing JS Code Within the and Tags; Creating JS Code in a Separate File; Variable Declaration in JavaScript; Using Eclipse; Summary; Chapter 2: A Step Ahead in JavaScript; Window Object; Data Types in JavaScript; String; Number; Undefined. 
505 8 |a NullObject; Objects Within Objects; Boolean; The typeof Operator; Method console.log; Taking Input from the User; Commonly Used Keywords in JavaScript; Summary; Chapter 3: Operators in JavaScript; Arithmetic Operators; Addition Operator; Subtraction Operator; Multiplication Operator; Division Operator; Remainder Operator; Exponentiation Operator; Increment Operator; Decrement Operator; Unary Negation Operator; Comparison Operators; Greater Than Operator; Less Than Operator; Greater Than or Equal To Operator; Less Than or Equal To Operator; Equality and Inequality Operators; Equality Operator. 
505 8 |a Inequality OperatorStrict Equality (Identity) Operator; Non-identity/Strict Inequality Operator; Logical Operators; Bitwise Operators; Bitwise AND; Bitwise OR; Bitwise XOR; Bitwise NOT; Bitwise Left Shift; Bitwise Unsigned Right Shift; Bitwise Signed Right Shift; Coding Example; Assignment Operators; String Operator; Summary; Chapter 4: Control Structures in JavaScript; Block Statement; Conditional Statements; if ... else Statement; switch Statement; Loops in JavaScript; while Loop; do ... while Loop; for Loop; for ... in Loop; Label Statement; Summary. 
505 8 |a Chapter 5: Regular Expressions and String MethodsRegular Expressions: An Overview; String Methods; search Method; replace Method; match Method; split Method; Regular Expression Object; Regular Expression Object Properties; constructor Property; global Property; ignoreCase Property; lastIndex Property; multiline Property; source Property; Regular Expression Object Methods; exec Method; test Method; toString Method; Summary; Chapter 6: Functions; Functions: An Overview; Declaring Functions; Using a Function Expression; Self-Invoking Functions; Named Function Expression; Anonymous Function. 
505 8 |a Using a Function DeclarationSummary Comparison of the Function Declaration and Function Expression; Function Parameters and Arguments; Missing Parameters and the undefined Value; arguments Array; Simulating Optional Parameter Passing; return Statement; Function Call; Parameter Pass by Value or Pass by Reference?; Function Naming; Summary; Chapter 7: Doing More with Functions; Hoisting in the Context of Functions; First-Class Citizens; Nested Functions; Lexical Scoping; Closures; Recursive Functions; Summary; Chapter 8: Object-Oriented Programming in JavaScript. 
590 |a ProQuest Ebook Central  |b Ebook Central Academic Complete 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a SAP Fiori. 
630 0 7 |a SAP Fiori  |2 fast 
650 0 |a JavaScript (Computer program language) 
650 0 |a ABAP/4 (Computer program language) 
650 6 |a JavaScript (Langage de programmation) 
650 6 |a ABAP/4 (Langage de programmation) 
650 7 |a Computer programming / software development.  |2 bicssc 
650 7 |a Programming & scripting languages: general.  |2 bicssc 
650 7 |a Information technology: general issues.  |2 bicssc 
650 7 |a COMPUTERS  |x Programming Languages  |x JavaScript.  |2 bisacsh 
650 7 |a ABAP/4 (Computer program language)  |2 fast 
650 7 |a JavaScript (Computer program language)  |2 fast 
758 |i has work:  |a JavaScript essentials for SAP ABAP developers (Text)  |1 https://id.oclc.org/worldcat/entity/E39PD3FgHjVBQRmkTgfdWyBhFq  |4 https://id.oclc.org/worldcat/ontology/hasWork 
776 0 8 |i Printed edition:  |z 9781484222195 
856 4 0 |u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4882827  |z Texto completo 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484222201/?ar  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH33062847 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL4882827 
938 |a EBSCOhost  |b EBSC  |n 1539275 
938 |a YBP Library Services  |b YANK  |n 14655475 
994 |a 92  |b IZTAP