Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 400 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 400 Bytes

OpenUp Web development practice

  1. Write a Square constructor function allows create a new instance which can set edge and calculate area.

  2. Write a JavaScript function that reverse a number.

  • Example x = 356712;
  • Expected Output : 217653
  1. Write a JavaScript function that returns a passed string with letters in alphabetical order
  • Example string :'bcda
  • Expected Output: 'abcd'