DEV Community

Discussion on: Create a simple Note-taking app with Deno

Collapse
 
nezirzahirovic profile image
Nezir Zahirovic

Having issue on: deno run --unstable --allow-write --allow-read src/app.ts add "Note 3:my new note"

this is console log of note:{ title:body: "Note 3:my new note" }

error: Uncaught TypeError: note.split is not a function or its return value is not iterable
const [title, body] = note.split(':');
^

Collapse
 
jeferson_sb profile image
Jeferson Brito • Edited

It's because the Denomander library has changed recently, now You have to pass the arguments like this:

deno run --unstable -A src/app.ts add "Note 3" "my new note"