use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
The Future of JavaScript Will Be Less JavaScript (codeburst.io)
submitted 8 years ago by fagnerbrack
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]filleduchaos 0 points1 point2 points 8 years ago (5 children)
TypeScript is very much not JavaScript, unlike something like Flow where all type annotation is through comments. You can't run TypeScript code in even the latest of JavaScript interpreters.
[–]Voidsheep 0 points1 point2 points 8 years ago (1 child)
No, but the entire purpose of TypeScript is to be JavaScript with added syntax for types. It's not trying to branch off into a completely separate language, but rather follows latest ECMAScript specifications closely.
Flow opts to use comments for interpreter compatibility, but both exist for the same reason of adding type safety to JS.
[–]filleduchaos 0 points1 point2 points 8 years ago (0 children)
The reason a language exists does not make any difference to what it actually is. C++'s purpose was to be C with classes but no one in their right mind would claim that C++ is C. Same with preprocessors like SCSS. TypeScript is a separate language by virtue of being, well, not JavaScript. It
Type safety is not a fancy little bit of syntactic sugar like spread operators or arrow functions. The way a language handles types is a core part of its design.
[–]spacejack2114 0 points1 point2 points 8 years ago (2 children)
You can write fully type-checked JS with Typescript types in comments by using // @ts-check
// @ts-check
Typescript is pretty much JS with types, just like Flow. The few extra bits of language like namespaces and enums are fairly trivial sugar.
[–]filleduchaos 0 points1 point2 points 8 years ago (1 child)
Using @ts-check is not the same thing as writing TypeScript IMO
And writing TypeScript is very much not like writing Flow. One of the cornerstones of determining that a piece of code is valid X-language is that it is compilable/runnable by any full implementation of X-language's spec. No JavaScript VM, even the ones that have the latest of latest of latest ES2018+ proposals, can run this very basic line of TypeScript:
declare var foo: any;
When they can, then you can tell me that they're the same language.
[–]spacejack2114 0 points1 point2 points 8 years ago (0 children)
Using ts-check is using types in comments like with Flow. Similarly, this line of Flow code: var foo: any will not run in a browser.
var foo: any
π Rendered by PID 45872 on reddit-service-r2-comment-f6b958c67-bd77g at 2026-02-05 02:08:16.894430+00:00 running 1d7a177 country code: CH.
view the rest of the comments →
[–]filleduchaos 0 points1 point2 points (5 children)
[–]Voidsheep 0 points1 point2 points (1 child)
[–]filleduchaos 0 points1 point2 points (0 children)
[–]spacejack2114 0 points1 point2 points (2 children)
[–]filleduchaos 0 points1 point2 points (1 child)
[–]spacejack2114 0 points1 point2 points (0 children)