chore(i18n,learn): processed translations (#44750)
This commit is contained in:
@ -25,7 +25,7 @@ NO incluyas comillas (individuales o dobles) en el resultado.
|
||||
|
||||
# --hints--
|
||||
|
||||
La secuencia de cartas 2, 3, 4, 5, 6 debe devolver `5 Bet`
|
||||
La secuencia de cartas 2, 3, 4, 5, 6 debe devolver la cadena `5 Bet`
|
||||
|
||||
```js
|
||||
assert(
|
||||
|
@ -89,7 +89,7 @@ assert(
|
||||
const bookList = ["The Hound of the Baskervilles", "On The Electrodynamics of Moving Bodies", "Philosophiæ Naturalis Principia Mathematica", "Disquisitiones Arithmeticae"];
|
||||
|
||||
// Change code below this line
|
||||
function add (bookName) {
|
||||
function add(bookName) {
|
||||
|
||||
bookList.push(bookName);
|
||||
return bookList;
|
||||
@ -98,7 +98,7 @@ function add (bookName) {
|
||||
}
|
||||
|
||||
// Change code below this line
|
||||
function remove (bookName) {
|
||||
function remove(bookName) {
|
||||
const book_index = bookList.indexOf(bookName);
|
||||
if (book_index >= 0) {
|
||||
|
||||
|
Reference in New Issue
Block a user