Gagniuc Paul / Гагнюк Пол - Coding Examples from Simple to Complex: Applications in JavaScript / Примеры кодирования от простого к сложному: Приложения на JavaScript [2024, PDF, EPUB, ENG]

Reply to topic
DL-List and Torrent activity
Size:  96 MB   |    Registered:  9 months 19 days   |    Completed:  3 times

Seeder not seen: 5 months 20 days

Leechers:

Username % UL DL UL speed DL speed
Vova_100 13 0- 0- 0- 0-
shows data only for the current session
 
   
 
 
Author Message

Download WYSIWYG ®

Gender: Male

Longevity: 9 years

Posts: 1513

Post 05-May-2024 13:20

[Quote]

Coding Examples from Simple to Complex: Applications in JavaScript / Примеры кодирования от простого к сложному: Приложения на JavaScript
Год издания: 2024
Автор: Gagniuc Paul / Гагнюк Пол
Издательство: Springer
ISBN: 978-3-031-53820-9
Язык: Английский
Формат: PDF, EPUB
Качество: Издательский макет или текст (eBook)
Интерактивное оглавление: Да
Количество страниц: 243
Описание: This book provides a comprehensive guide to JavaScript, which stands as the cornerstone of modern programming and is the main computer language driving the Internet. The author introduces readers to the rich world of JavaScript, taking them on a journey from the fundamentals to advanced topics, equipping them with the knowledge and skills needed to become a proficient science and engineering oriented JavaScript developer. The book provides a treasure trove of practical examples, meticulously crafted to deepen the reader understanding of JavaScript. This comprehensive exploration is designed to cater to novice learners as well as mature developers and scientists, equipping them with the requisite knowledge and competencies to harness the JavaScript full potential in their respective projects. This book is part of a series of works designed to present both the examples and their explanations in various computer languages, as close to a mirror version as possible.
Эта книга представляет собой исчерпывающее руководство по JavaScript, который является краеугольным камнем современного программирования и основным компьютерным языком, управляющим Интернетом. Автор знакомит читателей с богатым миром JavaScript, увлекая их в путешествие от основ к продвинутым темам, предоставляя им знания и навыки, необходимые для того, чтобы стать опытным разработчиком JavaScript, ориентированным на науку и технику. Книга содержит множество практических примеров, тщательно разработанных для углубления понимания читателем JavaScript. Это всестороннее исследование предназначено как для начинающих, так и для опытных разработчиков и ученых, предоставляя им необходимые знания и компетенцию, чтобы в полной мере использовать потенциал JavaScript в своих проектах. Эта книга является частью серии работ, направленных на то, чтобы представить как примеры, так и их объяснения на различных компьютерных языках, максимально приближенных к зеркальной версии.

Примеры страниц (скриншоты)

Оглавление

1
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1
Future of JavaScript . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2
The Content is Native . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
2
Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
3
Conditional Branching . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
4
Loops . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
5
Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29
6
Traversal of Multidimensional Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 59
7
Matrix Operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73
8
Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
8.1
Built-in Functions/Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107
8.2
Making of Functions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113
8.3
Recursion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 121
9
Objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 127
9.1
Constructors and Methods . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128
9.2
JSON . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 134
10
Moderate Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
10.1
Load Arrays from Strings . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141
10.2
Some Matrix Operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 150
10.3
Logical Operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 154
10.4
Miscellaneous . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 162
10.5
Sorting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 168
10.6
Permutations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 171
10.7
Statistics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 173
10.8
Useful conversions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 182
11
Complex Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 195
12
Randomnes and Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 215
13
Browser Specific . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 227
References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 237
[solely-soft.top].t195416.torrent
Torrent: Registered [ 2024-05-05 13:20 ] · A0DD9971018F69E28AF50D2B945AF019BF9E66F2

16 KB

Status: checked
Completed: 3 times
Size: 96 MB
Rate: 
(Vote: 0)
Have thanked: 1  Thanks   (List)
Gagniuc Paul / Гагнюк Пол - Coding Examples from Simple to Complex: Applications in JavaScript / Примеры кодирования от простого к сложному: Приложения на JavaScript [2024, PDF, EPUB, ENG] download torrent for free and without registration
[Profile] [PM]
Forum Topic Author Size
Programming Gagniuc Paul / Гагнюк Пол - Coding Examples from Simple to Complex: Applications in Python / Примеры кодирования от простого к сложному: Приложения на Python [2024, PDF, EPUB, ENG] Programmer 84 MB
Display posts:    
Reply to topic

Current time is: 24-Feb 17:42

All times are UTC + 2



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum