Do's and Don'ts General Types Number , String , Boolean , and Object Don’t ever use the types Number , String , Boolean , or Object .These types refer to non-primitive boxed objects that are almost never used appropriately in JavaScript code. /* WRONG */function reverse(s: String): String; Do use…