Description
هدف از این ریپو ترجمۀ مقالههای javascript.info به زبان فارسی هست و به همین دلیل ما تا حد ممکن مقالهها رو ترجمه کردیم حتی کلمات تخصصی.
اما حالا که دوباره مقالهها رو نگاه انداختیم به این نتیجه رسیدیم که بعضی از کلمات نباید ترجمه بشن و به صورت انگلیسی داخل مقالهها نوشته بشن.
الان تصمیم گرفتیم که ترجمۀ بعضی از کلمههای مقالهها رو به انگلیسی برگردونیم. این کار کمی زمانبر هست و از کسانی که تواناییش رو دارن درخواست کمک داریم تا هرچه سریعتر مقالهها آماده بشن.
اینجا لیستی از مقالههایی که ترجمه شدن رو میذاریم و تیک هر کدوم که درست شد رو میزنیم.
لطفا اگه مایل به همکاری هستین، یکی از این مقالهها رو انتخاب و ریپو رو fork کنین و ترجمۀ کلماتی که بنظرتون باید انگلیسی باشن رو برگردونین و زمانی که هر مقاله تموم شد یه PR بسازین. برای عنوان PR لطفا کلمه Update رو قبل از اسم مقاله قرار بدین.
لیست مقالات:
The JavaScript language
An introduction
JavaScript Fundamentals
- Hello, world!
- Code structure
- The modern mode, "use strict"
- Variables (@Bexacuter) Update Variable Section #244
- Data types (@Bexacuter) Update 'Type' section #245
- Interaction: alert, prompt, confirm (@TheBehnvm) Update Interaction: alert, prompt, confirm #248
- Type Conversions (@TheVelius) Update Type Conversions #260
- Basic operators, maths
- Comparisons (@TheVelius) Update comparison #261
- Conditional branching: if, '?'
- Logical operators
- Nullish coalescing operator '??'
- Loops: while and for
- The "switch" statement
- Functions
- Function expressions
- Arrow functions, the basics
- JavaScript specials
Code quality
Objects: the basics
- Objects
- Object references and copying
- Garbage collection
- Object methods, "this"
- Constructor, operator "new"
- Optional chaining '?.'
- Symbol type
- Object to primitive conversion
Data types
- Methods of primitives
- Numbers
- Strings
- Arrays
- Array methods
- Iterables
- Map and Set
- WeakMap and WeakSet
- Object.keys, values, entries
- Destructuring assignment
- Date and time
- JSON methods, toJSON
Advanced working with functions
- Recursion and stack
- Rest parameters and spread syntax
- Variable scope, closure
- The old "var"
- Global object
- Function object, NFE
- The "new Function" syntax
- Scheduling: setTimeout and setInterval
- Decorators and forwarding, call/apply
- Function binding
- Arrow functions revisited
Object properties configuration
Prototypes, inheritance
Classes
- Class basic syntax
- Class inheritance
- Static properties and methods
- Private and protected properties and methods
- Extending built-in classes
- Class checking: "instanceof"
- Mixins