JavaScript Template Literals
Template literals are a new way of defining strings by using backticks ` instead of single or double quotes.
Template literals are a new way of defining strings by using backticks ` instead of single or double quotes.
Optional Chaining Functions: Optional Chaining Arrays: Optional Chaining Objects:
By default jQuery click event does not work in iPhone/iOS devices in Safari/Chrome for a non-anchor element. Ways to fix it: add {cursor:pointer} CSS property to a clickable element; or add onclick="void(0)" HTML attr; And also don't forget href attr for the anchor element, otherwise it will be not trigger click event in iPhone/iOS devices ... Read more