I am 31 years old, work as civil engeneer (estimate engineer). I want to change my current job for a more promissing one.
I like write code, exploring new possibilities in front-end development, I also want to learn how to write backend code.
My strengths are perseverance, problen sloving, fast learning.
I want to gain knowledge and skills for employment in a big company, development in it, and launching my projects.
function head(head) {
let number = head.slice(0, 1);
let num = number.join();
return Number(num);
};
function tail(tail) {
let num = tail.slice(1);
return num;
};
function init(init) {
let num = init.slice(0, -1);
return num;
};
function last(last) {
let number = last.slice(-1);
let num = number.join();
return Number(num);
};