NHAN.NGUYEN
PORTFOLIO
← Back to home

Hello World: I am Nhan Nguyen And Here Is Why I Started Writing

·1 min read

This is my first post. I've been meaning to start writing for a while, and I finally decided to just do it.

Why Write?

A few reasons:

What to Expect

I'll write about:

A Quick Code Example

Since this is a tech-focused space, here's some code to make sure syntax highlighting works:

interface Post {
  title: string;
  date: string;
  content: string;
}
 
function formatDate(dateString: string): string {
  const date = new Date(dateString);
  return date.toLocaleDateString("en-US", {
    day: "2-digit",
    month: "short",
    year: "numeric",
  });
}

That's it for now. More to come.