InterviewSolution
| 1. |
Explain recursion in JavaScript? |
|
Answer» Template STRINGS are also KNOWN as Template Literals. They are the new WAY to write Strings in JavaScript and been introduced in ES6. We can now write Stings using back-ticks(``), which have a special way to interpolate variables. They are very useful in Expression interpolation and Multi-LINE strings. Although they don’t add any new feature to JavaScript, but they are a better visual way to write strings. Expression interpolation Multi-line strings |
|