Using Applescript to append user input to existing note in Notes App
This question explains how to modify text on Notes, so here's how that would be implemented in your code:
set noteName to "JAT"
set myDate to date string of (current date)
set myTime to time string of (current date)
set myStamp to myDate & " " & myTime
set JAT to text returned of (display dialog "What's on your mind, Weston?" default answer " " with icon note buttons {"Cancel", "Continue"} default button "Continue")
set entry to return & ">" & myStamp & " | " & JAT
tell application "Notes"
tell account "iCloud"
set body of note noteName to (get body of note noteName & entry)
end tell
end tell
quit
Don't forget to create the note first, though.