What are the different data types in javascript?
JavaScript has seven primitive types and one non-primitive type:
• Primitive Types: String, Number, Boolean, Undefined, Null, Symbol, BigInt
• Non-Primitive Type: Object (includes Arrays, Functions, and more)
| Is This Answer Correct ? | 0 Yes | 0 No |
Why does php need server?
What are the main error types in php and how do they differ?
Swap two variables value without using third variable in php ?
Write a PHP code to print following number pattern: 123 456 789
Write an example to remove html tags from a string in php?
What is a controller in php?
What is the current stable version of php? What advance thing in php7?
Explain the difference between isset() and empty()?
What is different types of visibility?
What is the static variable in function useful for?
Binary tree question - Node has numeric data (int) The function takes depth as argument and sum all the value of the node of the depth. For instance, (0) depth 0 / \ 10 20 depth 1 / \ / \ 40 50 60 70 depth 2 so if you pass get_sum(2), you would return 220 which is 40+50+60+70 (sum of depth2) write the function.
What are the differences between include() and include_once () functions?