Know-how
  • Level UP ^
  • Xây dựng 1 ứng dụng Angular___BestPractice1
  • .Net framework
  • Build app with abp modulezero
  • Quản lý token trong aspnet web api
  • Xử lý ảnh với imageprocessor
  • Sms Provider For Two-factor authentication
  • Xử lý callback function khi server đéo bật CORS
  • Angular6.1 công bố chính thức tháng 7 năm 2018
  • Vài note trong entity framework core project
  • Những thứ đã upgrade trong netcore 2.1
  • Solution SQL Database Image Storage & Easy Thumbnails
  • Solution SQL Database Comments and Likes in database
  • Method guide (SQL DESIGN)
  • Paging Model Dto
  • Làm việc với Data table Grid
  • Jquery Extensions
  • A helper library for async/await.
  • oDATA TRONG DONET, RESTER framework
  • Validate dotnetcore use bootstrap 3 css
  • dynamically-loading-components-with-angular
  • Angular Sercurity
  • Add sercurity header for dotnetcore
  • Làm quen và cài đặt Golang (Iris framework)
  • Entity framework 6 - Entity maping to Stored Procedures
  • Angular Security - Authentication With JSON Web Tokens (JWT): The Complete Guide
  • Sql filestream
  • Một vài câu hỏi test Full-stack engineer (JavaScript)
Powered by GitBook
On this page
  • 1. What is Callback? How do you solve callback hell?
  • 2. What is MVC architecture? Please explain the function of each component?
  • 3. Have you ever used AngularJS? What are Angular Directives & Services?
  • 2. Skill-based Section 1
  • 1. What will the code above output to the console and why
  • 2. Have you ever used Mongodb? Can you write mongo query to figure out all documents which contain string “AA” in “name” field & “dateCreated” is today?
  • 3. Skill-based Section 2
  • 1. Given an array and an integer N, print the all pair of numbers in the array that has sum equal to N. Example above
  • 2. What’s the complexity of your algorithm on the question above?

Một vài câu hỏi test Full-stack engineer (JavaScript)

Chúc các bạn làm bài tốt

1. What is Callback? How do you solve callback hell?

2. What is MVC architecture? Please explain the function of each component?

3. Have you ever used AngularJS? What are Angular Directives & Services?

2. Skill-based Section 1

var arr1 = "john".split(''); var arr2 = arr1.reverse(); var arr3 = "jones".split(''); arr2.push(arr3); console.log("array 2: length=" + arr2.length + " last=" + arr2.slice(-1)); console.log("array 1: length=" + arr1.length + " last=" + arr1.slice(-1));

1. What will the code above output to the console and why

2. Have you ever used Mongodb? Can you write mongo query to figure out all documents which contain string “AA” in “name” field & “dateCreated” is today?

3. Skill-based Section 2

Ex: Input array: [1, 2, 3, 4, 4, 5], N = 7 => Output: 3, 4 3, 4

1. Given an array and an integer N, print the all pair of numbers in the array that has sum equal to N. Example above

2. What’s the complexity of your algorithm on the question above?

​

PreviousSql filestream

Last updated 6 years ago

Tài liệu tham khảo:

JavaScript Two Sum: Find All Pairs That Sum to a Target Value - William S. VincentFind all pairs that sum to a target value in a JavaScript array.wsvincent.com
Query Documents — MongoDB ManualMongoDB Manual. How do I query documents, query top level fields, perform equality match, query with query operators, specify compound query conditions.docs.mongodb.com