How can I? Homework help?
wondering if I coud find a homework buddy or someone better at javascript than I am. I've started my code and would love to share it with someone who can help me write my code and help me understand. No I don't want the answer given to me. Thanks a bunch Create a function named createCourse that should: take three arguments that will define course properties: title (string). duration (string). students (array). return an object that has each property assigned its proper value. For example:// returns {title: 'coding camp', duration: '10 weeks', students: ['Carl', 'Jane', 'Cin']} Create a function named formLetter that should: take one argument, a letter, which has three properties: recipient, sender, and msg. combine the three properties into a single string with an additional greeting and closing. insert additional new lines between the greeting, message, and signature. For example: // returns "Hello Tasha!,\n\nHow are you?\n\nSincerely,\nTasha"