Front-End Assessment Test Rules: *. Waktu pengerjaan 3 hari kerja, submit yang dikerjakan, selesai / tidak selesai, yang kami lihat adalah konsep, logic, kerapian dan pemahaman *. Semua kodingan harus di push ke dalam Git, sertakan link git. *. Semakin sering melakukan commit-an git, semakin baik. *. Sertakan Readme untuk soal aplikasi. *. Jika ada pertanyaan, silakan reply all email dari mcpayment *. Gunakan penamaan variable yang baik dan benar, ikuti konsep SOLID adalah nilai plus

  1. logic A. Two Sums Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order. Example 1: Input: nums = [2,7,11,15], target = 13 Output: [0,2] Output: Because nums[0] + nums[2] == 13, we return [0, 2]. Example 2: Input: nums = [3,2,4], target = 6 Output: [1,2] Example 3: Input: nums = [3,3], target = 6 Output: [0,1]
  2. Budget Application We need to have a web app that can help us track our income, expenses and the balance. Point to review:
  3. You have to make a responsive site for the frontend.
  4. Make Make a nice UI using CSS build by yourself (would be nice to have pre-processor SASS / LESS), without any framework like bootstrap etc.
  5. Javascript fundamental, Please show us what you got about javascript.
  6. No jquery.
  7. Write a clean and scalable code is nice to have.