Lecture 9 Complete ✅ JavaScript from @rohit_negi9
Topic -
Function = function add(num,num1){
let sum = num num1;
}
add(3,4);
arrow function , const sqr = num => num*num;
sqr(2);
Call back Function....
Day - 18 Complete ✅
Today we studied memory management in depth and how data is stored.
✅ Topic -
- Statics RAM ( Stack) - Inside the stack we store the address of the heap.
- Dynamic RAM ( Heap ) - Inside this we learned how permissive data types are stored.@rohit_negi9
Day - 17 Complete ✅ @rohit_negi9
Topic -
Variable ( let ,const,and var )
Data Type -{
- primitive Data type
- non primitive Data type
}
#MERNStack#rohit_negi