Guest User

Untitled

a guest
Sep 16th, 2018
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function signup({coursename, username, email, password}){
  2. //Code goes here...
  3. }
  4.  
  5. const student = {
  6. username: 'testuser',
  7. password: 'testpassword',
  8. email: 'testuser@tesing.com',
  9. coursename: 'Selenium'
  10. }
  11.  
  12. signup(student);
Add Comment
Please, Sign In to add comment