Back to Job Description

Apply — Software Engineer (Full Stack)

Complete the screening form below. We'll review your application and be in touch.

Personal Information

Availability & Location

Can you work a schedule that aligns with AST for ~8 hours/day?
Relocation preference

Technical Background

Strengths — pick up to 2
What do you want to spend ~70% of your time on?

Quick Technical Check

Trace through this in your head — what is the value of sum after the code runs?
const vals = [5, 4, 10, 3];
let sum = 0;

for (let i = 0; i < vals.length; i++) {
  if (vals[i] > 4) {
    sum += vals[i] * 2;
  } else {
    sum = sum - 1;
  }
}