Skip to content

Commit

Permalink
Fix broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
vejol committed Jan 6, 2025
1 parent 6b05b3a commit 87f42ec
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/content/1/es/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const tSquared = t.map(p => p * p)
// tSquared ahora es [1, 4, 9]
```

La característica de la función de flecha se agregó a JavaScript hace solo un par de años, con la versión [ES6](http://es6-features.org/). Antes de esto, la única forma de definir funciones era usando la palabra clave _function_.
La característica de la función de flecha se agregó a JavaScript hace solo un par de años, con la versión [ES6](https://rse.github.io/es6-features/). Antes de esto, la única forma de definir funciones era usando la palabra clave _function_.

Hay dos formas de hacer referencia a la función; uno está dando un nombre en una [declaración de función](https://developer.mozilla.org/es/docs/Web/JavaScript/Reference/Statements/function).

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/fi/osa1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const tSquared = t.map(p => p * p)
// tSquared on nyt [1, 4, 9]
```

Nuolifunktio on tullut JavaScriptiin vasta muutama vuosi sitten version [ES6](http://es6-features.org/) myötä. Tätä ennen ainoa tapa funktioiden määrittelyyn oli avainsanan _function_ käyttö.
Nuolifunktio on tullut JavaScriptiin vasta muutama vuosi sitten version [ES6](https://rse.github.io/es6-features/) myötä. Tätä ennen ainoa tapa funktioiden määrittelyyn oli avainsanan _function_ käyttö.

Määrittelytapoja on kaksi, funktiolle voidaan antaa [function declaration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function) ‑tyyppisessä määrittelyssä <i>nimi</i>, jonka avulla funktioon voidaan viitata:

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/fr/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ const tSquared = t.map(p => p * p)
// tSquared est devenu [1, 4, 9]
```

La fonctionnalité de fonction fléchée a été ajoutée à JavaScript il y a seulement quelques années, avec la version [ES6](http://es6-features.org/). Avant cela, la seule façon de définir des fonctions était d'utiliser le mot-clé _function_.
La fonctionnalité de fonction fléchée a été ajoutée à JavaScript il y a seulement quelques années, avec la version [ES6](https://rse.github.io/es6-features/). Avant cela, la seule façon de définir des fonctions était d'utiliser le mot-clé _function_.

Il existe deux façons de référencer la fonction ; on donne un nom dans une [déclaration de fonction](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function).

Expand Down
2 changes: 1 addition & 1 deletion src/content/1/ptbr/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const tAoQuadrado = t.map(p => p * p)
// tAoQuadrado agora é [1, 4, 9]
```

A funcionalidade da _arrow function_ foi adicionada ao JavaScript há apenas alguns anos, com a versão [ES6](http://es6-features.org/). Antes disso, a única maneira de definir funções era usando a palavra-chave _function_.
A funcionalidade da _arrow function_ foi adicionada ao JavaScript há apenas alguns anos, com a versão [ES6](https://rse.github.io/es6-features/). Antes disso, a única maneira de definir funções era usando a palavra-chave _function_.

Existem duas maneiras de se referenciar uma função; uma é atribuir um nome em uma [declaração de função](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function) (_function declaration_).

Expand Down
4 changes: 2 additions & 2 deletions src/content/1/zh/part1b.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ const tSquared = t.map(p => p * p)
// tSquared is now [1, 4, 9]
```

<!-- The arrow function feature was added to JavaScript only a couple of years ago, with version [ES6](http://es6-features.org/). Prior to this the only way to define functions was by using the keyword _function_.-->
箭头函数的功能是在几年前才加入到JavaScript中的,版本[ES6](http://es6-features.org/)。在这之前,定义函数的唯一方法是使用关键字_function_
<!-- The arrow function feature was added to JavaScript only a couple of years ago, with version [ES6](https://rse.github.io/es6-features/). Prior to this the only way to define functions was by using the keyword _function_.-->
箭头函数的功能是在几年前才加入到JavaScript中的,版本[ES6](https://rse.github.io/es6-features/)。在这之前,定义函数的唯一方法是使用关键字_function_

<!-- There are two ways to reference the function; one is giving a name in a [function declaration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function).-->
有两种方式来引用函数;一种是在[函数声明](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function)中给出一个名称。
Expand Down

0 comments on commit 87f42ec

Please sign in to comment.