-
@רפאל אמר בgetTime אינו פונקציה:
@yyy על מנת להוכיח שאני טועה (כתמיד) נסה להוסיף את השורה הבאה לקוד, ווודא שהתוצאה שלילית.
console.log(typeof this.DB[0].BirthDate === 'string')
זה מחזיר true.
אני מבין שהשגיאה היא בשורה
var ageDifMs = Date.now() - BirthDate.getTime();
בכדי לנסות לפתור את הבעיה
עשיתי את הדבר הבאvar ageDifMs = Date.now() - JSON.parse(BirthDate).getTime();
בקיצור להפוך את זה לאובייקט.
הבעיה שכאן כבר יש שגיאה שהטייפ לא מתאים:Argument of type 'Date' is not assignable to parameter of type 'string'
כי הצהרתי שזה Date, ועכשיו אני מתייחס לזה כ-string.
בקיצור בלגן.
איך מתקדמים? -
@odeddvir אמר בgetTime אינו פונקציה:
הייתה לי הרגשה שזה קשור לתוהו ובוהו של JS
@odeddvir אמר בgetTime אינו פונקציה:
ושבזמן הריצה אנחנו עדיין במערב הפרוע של JS
-
@רפאל סתם להחכים, הרי תיאורטית TypeScript יכלו לייצר קוד JS טהור שבודק התאמה לטיפוס (אולי זה יקר מבחינת ביצועים) וזורק שגיאה, זה לא הפואנטה של TS בכלל, או שיש מקרים שהקו'ד המיוצר נותן טיפה קשיחות ביחס לקוד JS רגיל (נפקא מינה בדיוק למקרים כאלה שההודעות שגיאה יהיו חכמות יותר)?
-
@dovid התשובה שלילית, הקוד המיוצר זהה כמעט לחלוטין למקור, למעט מקרים ספורים (למשל הOptional operator לפני שהיה זמין בJS).
מאמר שהתפרסם בNCC Group תחת הכותרת:
?Does TypeScript Offer Security Improvements Over JavaScript
קובע באופן נחרץ:מה אנחנו מרוויחים מהשימוש ב-TypeScript מבחינת בטיחות? התשובה היא אפס. למעשה אם כבר, השימוש בTypeScript רק גורע מהבטיחות מכיוון שהוא מעניק לנו תחושת שווא של טיפוסיות קשוחה ובדיקת סוגים שלא קיימות בפועל בזמן הריצה.
שימושית כל שתהיה בזמן הכתיבה, אין שום יתרון לשימוש בזמן הריצה.
-
TypeScript עדיין נחשבת לאופציה היחידה עבור פרוייקטים בינוניים ומעלה, בהם הפיתוח בJS b נחשב לקשה במיוחד\על גבול הבלתי אפשרי, מטרת המאמר שהזכרתי איננה לשלול את השימוש בTypeScript אלא לציין את מגבלותיה.
אני מצרף את הDesign Goals מתוך הWIki של TypeScript (שים לב להדגשות):
המטרות
-
Statically identify constructs that are likely to be errors
-
Provide a structuring mechanism for larger pieces of code
-
Impose no runtime overhead on emitted programs
-
Emit clean, idiomatic, recognizable JavaScript code
-
Produce a language that is composable and easy to reason about
-
Align with current and future ECMAScript proposals
-
Preserve runtime behavior of all JavaScript code
-
Avoid adding expression-level syntax
-
Use a consistent, fully erasable, structural type system
-
Be a cross-platform development tool
-
Do not cause substantial breaking changes from TypeScript 1.0
אינן המטרות
-
Exactly mimic the design of existing languages. Instead, use the behavior of JavaScript and the intentions of program authors as a guide for what makes the most sense in the language.
-
Aggressively optimize the runtime performance of programs. Instead, emit idiomatic JavaScript code that plays well with the performance characteristics of runtime platforms.
-
Apply a sound or "provably correct" type system. Instead, strike a balance between correctness and productivity.
-
Provide an end-to-end build pipeline. Instead, make the system extensible so that external tools can use the compiler for more complex build workflows.
-
Add or rely on run-time type information in programs, or emit different code based on the results of the type system. Instead, encourage programming patterns that do not require run-time metadata.
-
Provide additional runtime functionality or libraries. Instead, use TypeScript to describe existing libraries.
-
Introduce behavior that is likely to surprise users. Instead have due consideration for patterns adopted by other commonly-used languages.
-
-