Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. for (flashcard in flashcards) {
  2. let word = flashcard.word || '';
  3. let image = flashcard.image || '';
  4. let pronunciation = flashcard.pronunciation || '';
  5. let meaning = flashcard.meaning || '';
  6. let order = flashcard.order || -1; // -1 is unordered
  7. let remember_score = 0;
  8. FlashcardModel.createFlashcard(word, pronunciation, meaning, image, order, remember_score, req.body.collection_id);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement