エレガントなJavaScript:現代的プログラミング入門
JavaScriptを用いた現代的なプログラミングの包括的なガイド。このコースでは、基本的なプログラミング原則、JavaScript言語仕様、ウェブブラウザとの統合、およびNode.jsを用いたサーバーサイド開発について学び、実際の応用例として5つの実世界プロジェクトを扱います。
コース概要
📚 コンテンツ概要
現代的なプログラミングをJavaScriptを使って学ぶ包括的なガイド。本コースでは、基本的なプログラミング原則、JavaScript言語仕様、ウェブブラウザとの統合、およびNode.jsを使ったサーバーサイド開発について扱い、実世界の5つのプロジェクト応用も含む。
JavaScriptプログラミングの核心に深く、洗練された入り込み方。
著者: マリーン・ハーヴァーベーケ
謝辞: 454名の資金支援者による支援;イラストはWasif Hyder、Max Xiantu、Margarita Martínez、José Menor、Jim Tierney、Dyle MacGregor、Jeff Avallone、Thomas Palef、Antonio Perdomo Pastorが担当。
🎯 学習目標
- プログラムとは何かを定義し、コンピュータ言語における抽象化の異なるレベルを説明できる。
- JavaScriptの数値と算術演算子を使って値を生成できる。
- 変数を宣言・更新し、命名規則および予約語の制限を守れる。
doループ、forループ、switchステートメントを使って堅牢な制御フローを実装し、インデントやコメントによりコードの読みやすさを保てる。- 複数の表記法を使って関数を定義・呼び出し、パラメータ、オプション引数、ネストされた静的スコープを扱える。
- 再帰、クロージャ、コールスタックといった高度な関数型概念を活用して複雑なアルゴリズム的パズルを解決できる。
- 専用のオブジェクトおよび配列メソッドを使って複雑なデータ構造や文字列を管理できる。
- 高階関数(
filter、map、reduce)を実装してロジックを抽象化し、データ変換を組み合わせられる。 - プロトタイプチェーンをナビゲート・操作し、構造的で再利用可能なオブジェクトインスタンスと多態性インターフェースを作成できる。
- 多態性インターフェースを実装して、複雑なデータ視覚化(テーブル)を処理できる。
レッスン 共 10 课时 · 预计 30.0h
レッスン
Lesson
This lesson introduces the concept of programming as the art of subduing complexity by creating immaterial logic that directs physical hardware. Students will learn the fundamental structure of JavaScript, including the roles of variables, control flow, and the distinction between statements and expressions.
This lesson explores advanced control flow in JavaScript, focusing on sophisticated iteration patterns like for loops, do-while loops, and multi-way branching with switch statements. Students will learn to manage program execution precisely using break and continue keywords, modular arithmetic, and nested loops to solve complex algorithmic challenges.
This lesson explores the concept of abstraction in programming, focusing on how to transition from imperative, hardware-level logic to declarative, human-readable code. Students will learn to implement and refine flexible functions, such as range and sum, while analyzing the performance trade-offs associated with the abstraction tax.
This lesson explores interface-based polymorphism by defining a standardized Table Interface that allows layout engines to process diverse data types through a consistent set of methods. Students will learn to implement flexible, decoupled systems by using defensive programming techniques and interface contracts to manage object rendering and alignment.
This lesson introduces Regular Expressions (RegExp) in JavaScript, covering how to define patterns using literal notation or constructors and how to use the .test() method for validation. Students will learn to manage case sensitivity, handle special characters through escaping, and apply these techniques to dynamic string matching tasks.
This lesson explores the evolution of JavaScript module systems, focusing on how to prevent namespace pollution through techniques like Immediately Invoked Function Expressions (IIFEs) and closures. Students will learn to design robust, encapsulated code by creating private scopes and structured public interfaces for their modules.
AI020: Events and Interactive Platforms (Lesson 7) explores the technical foundations of building dynamic web experiences through DOM manipulation, regular expressions, and event handling. Students will learn to transform static content into interactive environments by implementing efficient workflows for real-time feedback and user input tracking.
This lesson explores the performance advantages of the HTML5 Canvas API over SVG for high-density graphics by utilizing a 2D rendering context to bypass DOM overhead. Students will also examine the role of the transport layer in web applications, specifically analyzing the performance trade-offs between TCP and UDP for data transmission.
This lesson explores the necessity of asynchronous programming in web development to prevent UI freezing caused by synchronous I/O operations. Students will learn to implement event-driven patterns and browser persistence APIs to maintain responsive, high-performance applications during network-intensive tasks.
This lesson explores advanced Canvas API techniques for building interactive drawing tools, focusing on state management, composite operations, and mathematical constraints. Students will learn to implement dynamic features like spray brushes and erasers by manipulating canvas context properties and handling mouse events through higher-order patterns.