N
N
NiyazNA2019-07-04 23:38:31
Career in IT
NiyazNA, 2019-07-04 23:38:31

Requirements for Super Jun frontend?

I study at the 3rd course, Information security. Not so long ago I was interviewed for the position of junior react developer. They offered to work. But after thinking it over again, I decided to give up the job. I think that I will not be able to combine my studies at the university, the military department and work. Perhaps a remote worker would be ideal, but who needs a remote person with zero commercial experience. Thus, I have another unemployed year. I plan to get to super-joon, but I don’t know what is the best thing to do to become one. I focus on solving problems, studying algorithms and data structures. But is it right? What do you think a super-junior frontend should be like so that he clearly stands out from the crowd of other juniors?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
O
orbit070, 2019-07-04
@NiyazNA

I focus on solving problems, studying algorithms and data structures. But is it right?

No, knowledge of sorting algorithms, tree types, and graph traversal methods is unlikely to increase your value as a front-end developer, but in general, this knowledge will not be superfluous, these are such fundamental things that those who studied at universities know about and those who do not know who studied on vidokursam. Sometimes they like to ask this at interviews, but I’m not sure if it’s for the position of a front-end developer and I’m not sure if it’s juniors. But, I repeat, university students should know this - this is part of the program. But this is not something to spend a year of life on.
Frontend or not frontend - it doesn't matter, any superjunior is a person who, without two or three weeks, is +-middle, able to solve business problems. To be able to solve real problems, you need to solve problems, and not cut graph traversal algorithms in basic) If you can’t get a job, ask for half / a quarter of the rate, for food, and generally for free, just to take part in a real project, some then take on the small tasks. Or take a real project and file it yourself completely. Ask more competent developers for code reviews from time to time. In general, do what you will need to do at work, and university knowledge should be just a nice addition in the form of a theoretical base. You will do 2-3 small projects in a year, or one large one, this will be your experience, which will distinguish other guys, who want to get a job as a junior. You will have a serious advantage, because now so many people are trying to get a job as a junior after a couple of months of video courses.

V
VoidVolker, 2017-09-19
@VoidVolker

console.log("2, 3, 5, 7, 11")

function GetNumbers(n){ 
    var nums = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199];
    return nums.slice(0, Math.max( 0, Math.min(n, nums.length) ) ).join(', ');
}

Usage: Result: Here you can get more prime numbers: denisx.ru/tech/prime-number/prime-numbers-list

I
Ilya Beloborodov, 2017-09-19
@kowap

var userNumber = 10; // число полученое от пользователя
var list = new Array;

nextPrime:
for (var i = 2; i <= 1000; i++) {
  for (var j = 2; j < i; j++) {
    if (i % j == 0) continue nextPrime;
  }
  list.push(i);
}

var string = '';
if(userNumber > 0) {
  for (var i = 0; i < userNumber; i++) {
    string = string + list[i] + ', ';
  }
}

var result = string.substring(0, string.length - 2);

console.log(result);

C
Cr2ed, 2017-09-19
@Cr2ed

// Получаем количество чисел которые нам надо вывести
var count = window.prompt('Please enter number.', 0);

// Определяем базовое число
var currentNumber = 2;

//Продолжаем цикл до тех пор пока количество требуемых для отображения чисел не достигнет нуля  
while(count != 0) {
    if(isNatural(currentNumber)) {
        console.log(currentNumber);
        count--;
    } 
    currentNumber++;
}

// Определяем функцию которая проверяет натурайное ли число или нет
function isNatural(number) {
    for (var i = 2; i <= number/2; i++) {
        if (number % i == 0) {
            return false;
        }
    }
    return true;
}

I
Ilya Agafonov, 2017-09-19
@Tairesh

Here is the complete solution according to the TOR

var n = prompt('Введите число если вы пользователь');
document.write('2, 3, 5, 7, 11');

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question