A letter To My Japanese SenseiVannakam(konnichiwa),nan japan moli patri padikka vendum endra thedal thodangiya poluthu Youtubeil ungalathu videokali parka mudinthathu, appoluthu than therinthathu Tamil moli than veir(root) ah irukirathu endru , pinarr enaku tamil moliyin uyir mey...Aug 24, 2024·2 min read
Problem solving without using closure in phpUsing closure <?php // Our closure $double = function($a) { return $a * 2; }; // This is our range of numbers $numbers = range(1, 5); // Use the closure as a callback here to // double the size of each element in our // range $new_numbers = ar...Jul 24, 2023·2 min read
Php Data TypesPHP is loosely typed,means automatically determines the datatype assigned to each variable. PHP data types: Data TypeDescriptionExample IntegerWhole numbers$age = 30; Float/DoubleNumbers with decimal points$price = 19.99; StringSequence of c...Jul 24, 2023·5 min read
Php Print vs EchoBoth echo and print are used to output data in PHP, but they have some differences in terms of usage and behavior: Return Value: echo: Does not return any value. It simply outputs the data to the screen. print: Returns 1 after printing the data to...Jul 23, 2023·4 min read
Javascript basics in forfor loop This is used for when working with arrays. Loops through a block of code number of times. const cars = ["BMW", "Volvo", "Saab", "Ford", "Fiat", "Audi"]; let text = ""; for (let i = 0; i < cars.length; i++) { tex...Jul 6, 2023·1 min read
OOPS Classes and Objects EP-1Recap The Previous blog said that a Class is the blueprint of a class and an object is an instance of class from that blueprint you can build houses. Object data type Php has a generic class implementation called std(Standard) class that you could us...Jan 18, 2023·2 min read