Kolliev Serhii

Future Front-End Developer

About Me

A beginner programmer who dreams of working in a large IT company

Education

I have been a sailor for a long time. He graduated from the Kherson Maritime College and went to sea several times. But this year I decided to change my life and do what I like. My path to the IT industry began at this school.

Code Example

						
               function makeid(length) {
       var result           = '';
       var characters       = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
       var charactersLength = characters.length;
       for ( var i = 0; i < length; i++ ) {
	    result += characters.charAt(Math.floor(Math.random() * 
		charactersLength));
		}
		return result;
		}
						  
		console.log(makeid(5));
						
					

Contact