Software Developer

Hi, I'm Chasen.

I'm a software developer. I build thoughtful, intuitive web experiences using modern web technologies.

×
javascript-example.js
  
    const headerElement = document.createElement('h1');
    const subHeaderElement = document.createElement('p');

    headerElement.textContent = "Hi, I'm Chasen.";
    subHeaderElement.textContent = "I'm a software developer. I build thoughtful, intuitive web experiences using modern web technologies.";
    
    document.body.appendChild(headerElement);
    document.body.appendChild(subHeaderElement);
    

Use the left and right arrow keys to move between technology examples. Hovering the code window pauses the automatic cycle.