From 16ac39718c71c386e4149fbf7f2412c6eb91d97b Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Mon, 4 Jan 2021 06:09:50 -0300 Subject: [PATCH] kotlin 404 --- 1-js/01-getting-started/1-intro/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/01-getting-started/1-intro/article.md b/1-js/01-getting-started/1-intro/article.md index 6eb30d6e..49f821d1 100644 --- a/1-js/01-getting-started/1-intro/article.md +++ b/1-js/01-getting-started/1-intro/article.md @@ -111,7 +111,7 @@ Examples of such languages: - [Flow](http://flow.org/) also adds data typing, but in a different way. Developed by Facebook. - [Dart](https://www.dartlang.org/) is a standalone language that has its own engine that runs in non-browser environments (like mobile apps), but also can be transpiled to JavaScript. Developed by Google. - [Brython](https://brython.info/) is a Python transpiler to JavaScript that enables the writing of applications in pure Python without JavaScript. -- [Kotlin](https://kotlinlang.org/docs/js-overview.html) is a modern, concise and safe programming language that can target the browser or Node. +- [Kotlin](https://kotlinlang.org/docs/reference/js-overview.html) is a modern, concise and safe programming language that can target the browser or Node. There are more. Of course, even if we use one of transpiled languages, we should also know JavaScript to really understand what we're doing.