An open API service indexing awesome lists of open source software.

https://github.com/rolling-scopes-school/core-js-strings

Tasks for learning methods of String class
https://github.com/rolling-scopes-school/core-js-strings

Last synced: about 1 year ago
JSON representation

Tasks for learning methods of String class

Awesome Lists containing this project

README

          

# Core JS Strings

:warning: **Please note that you mustn't open PRs that contains the answers to this repo!**

However, PRs with the fixes or proposals are welcomed!

## Task

The goal of the assignment is to learn how to work with strings in JS.

**Active usage of [documentation](https://developer.mozilla.org/en-US/) is strongly recommended!**

## Prepare and test

1. Install Node.js
2. Fork this repository:
3. Clone your newly created repo: `https://github.com/<%your_github_username%>/core-js-strings/`
4. Go to folder `core-js-strings`
5. To install all dependencies use `npm install`
6. Each task is usually a regular function:

```javascript
/**
* Returns the result of concatenation of two strings.
*
* @param {string} value1
* @param {string} value2
* @return {string}
*
* @example
* 'aa', 'bb' => 'aabb'
* 'aa','' => 'aa'
* '', 'bb' => 'bb'
*/
function concatenateStrings(value1, value2) {
throw new Error('Not implemented');
}
```

Read the task description in the comment above the function. Try to understand the idea. You can see the tests prepared if you don't understand it.
7. Write your code in `src/*.js`.

Remove the throwing error line from function body:

```javascript
throw new Error('Not implemented');
```

Implement the function by any way and verify your solution by running tests until the failed test become passed (green).

8. Run `npm test` in command line. If everything is OK you can try to resolve the next task.
9. You will see the number of passing and pending tests.

## Submit to [rs app](https://app.rs.school/)

1. Commit and push your solutions to your fork
2. Open rs app and login
3. Go to submit task page
4. Select your task (Core JS Strings)
5. Press submit button and enjoy

## Notes

We recommend you to use nodejs of version 22. If you using any of features that does not supported by node `v22`, score won't be submitted.
Please be sure that each of your test in limit of 30sec.
You will get 0 (zero) if you have any eslint's errors or warnings.

## FAQ

**Question:** I use Windows machine and have received a lot of errors like "Expected linebreaks to be 'LF' but found 'CRLF'". How to handle it?

**Answer**:

- First, you need to install Gitbash properly: you need to choose option "Checkout as-is, commit as-is" in section "Configuring the line ending conversions". It'll let you download repos with line endings set "as-is" as well as commit. In other words, not to change them at all, because by default it converts them.
- Second, install `editorconfig` plugin to your editor. For VS Code you can find it here:

I'll let you apply some rules when you saving your files in the repo. This plugin will use config-file `.editorconfig` that you can see in the root folder. It lets you save the file with needed line endings, trim whitespaces, etc.

- Finally, you need to apply linter's autofix feature in order to fix all linebreaks that was already changed to "CLRF":

```bash
npm run lint:fix
```

---

The task based on .