프로그래밍 언어
Python, C, C++, Java, JavaScript, TypeScript, Go, R, Haskell 튜토리얼 — 기초 문법부터 고급 기법까지.
Sample Datasets
This folder contains sample datasets for use in exercises and examples throughout the R training course.
글 읽기 →Intermediate Level Data Manipulation and Visualization
This section focuses on data science skills using R's tidyverse collection of packages. You'll learn to manipulate, clean, and visualize data effectively.
글 읽기 →Introduction to TypeScript
TypeScript is a superset of JavaScript that adds static type checking to JavaScript. It was developed by Microsoft and is now an opensource project.
글 읽기 →Basic Types
TypeScript provides several basic types that correspond to JavaScript's primitive types and more.
글 읽기 →Variables and Type Annotations
Understanding how to declare variables and use type annotations in TypeScript.
글 읽기 →Functions
Functions are fundamental in TypeScript. Learn how to type them properly.
글 읽기 →Interfaces
Interfaces define the shape of objects and provide a way to enforce structure in your code.
글 읽기 →Classes
TypeScript adds type annotations and access modifiers to JavaScript classes.
글 읽기 →Arrays and Tuples
Working with arrays and tuples in TypeScript.
글 읽기 →Enums
Enums allow you to define a set of named constants.
글 읽기 →Type Assertions
Type assertions tell TypeScript to treat a value as a specific type. Use with caution
글 읽기 →Union and Intersection Types
Combine types in powerful ways with union and intersection types.
글 읽기 →Beginner Level: TypeScript Fundamentals
Welcome to TypeScript This section covers the fundamentals you need to get started.
글 읽기 →Generics
Generics allow you to create reusable components that work with multiple types.
글 읽기 →Utility Types
TypeScript provides builtin utility types that transform existing types.
글 읽기 →Advanced Types
Explore more sophisticated type patterns and techniques.
글 읽기 →Modules and Namespaces
Organize and structure your TypeScript code with modules and namespaces.
글 읽기 →Decorators
Decorators provide a way to add annotations and metadata to classes, methods, and properties.
글 읽기 →Type Guards
Type guards are expressions that perform runtime checks to narrow types.
글 읽기 →Type Narrowing
TypeScript narrows types based on control flow analysis.
글 읽기 →Mapped Types Basics
Mapped types create new types by transforming properties of existing types.
글 읽기 →Conditional Types Basics
Conditional types select one of two types based on a condition.
글 읽기 →Error Handling
Handle errors in a typesafe way with TypeScript.
글 읽기 →Intermediate Level: Advanced TypeScript Features
Build on your foundation with more powerful TypeScript features.
글 읽기 →