I like to travel, programming and running

Artemkin Artem Viktorovich

my photo

My social media

My education

  1. Sports and Pedagogical College 2000-2003
  2. Moscow Banking Institute 2003-2008
  3. THE RUSSIAN PRESIDENTAL ACADEMY OF NATIONAL ECONOMY AND PUBLIC ADMINISTRATION 2011-2013

Work experience

Company Position Year
Element Leasing economist 2020 - 2021
Lockobank economist 2021 - 2022

Skills

  • HTML5
  • CSS3
  • JS Basic
  • Git&Github

Foreign languages

  • English(A2)

Contacts

  • +7(905)760-12-10
  • artius1@rambler.ru

Github

Code sample

const car = {
brand: 'Ford',
model: 'Fiesta',
start: function(){
console.log('Started ${this.brand} ${this.model}')
}
}
car.start() // Started Ford Fiesta