--- title: Factors of an integer id: 597f1e7fbc206f0e9ba95dc4 challengeType: 5 videoUrl: '' localeTitle: Факторы целого числа --- ## Description

Напишите функцию, возвращающую множители положительного целого числа.

Этими факторами являются положительные целые числа, по которым число, подлежащее учету, можно разделить, чтобы получить положительный целочисленный результат.

///
## Instructions
## Tests
```yml tests: - text: factors - это функция. testString: 'assert(typeof factors === "function", "factors is a function.");' - text: 'factors(45) должны вернуться [1,3,5,9,15,45] .' testString: 'assert.deepEqual(factors(45), ans[0], "factors(45) should return [1,3,5,9,15,45].");' - text: 'factors(53) должны возвращать [1,53] .' testString: 'assert.deepEqual(factors(53), ans[1], "factors(53) should return [1,53].");' - text: 'factors(64) должны возвращать [1,2,4,8,16,32,64] .' testString: 'assert.deepEqual(factors(64), ans[2], "factors(64) should return [1,2,4,8,16,32,64].");' ```
## Challenge Seed
```js function factors (num) { // Good luck! } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```