My favourite coding teacher since my college days. Now I am working as a full stack web developer. The basement is build by you akka, Thank you so much
Sis I'm addicted ure teaching style avlo clear a puriuthu one more help enaku February month exam athukidaile C# program language video upload panni vitunga please its my kindly request
let otpWord = "Mohamed"; let otplen = otpWord.length; let rnotp = (Math.floor(Math.random() * otplen)); let otp = otpWord.charAt(rnotp); console.log(otp);
function generate(){ const name = document.getElementById("name").value; var tmpName = ""; for(var i = 0; i < name.length; i++){ var tmpIdx = Math.floor(Math.random()*name.length)+1; tmpName += (tmpIdx < name.length && (!tmpName.includes(name.charAt(tmpIdx))))?name.charAt(tmpIdx):"";
My favourite coding teacher since my college days. Now I am working as a full stack web developer. The basement is build by you akka, Thank you so much
Brother js ku entha video mattum pothumaa now I am learning frontend developer so I am a non it so plz reply
😍😍😍One Teacher , One Channel ,
One Sister Can Be Change The Carrier🤩🤩🤩
🤗🤗🤗🤗Thanks Akka For Your Carring Videos 🥰🥰🥰
let name = "logicfirst"
console.log(name[Math.floor(Math.random() * name.length)])
Can you explain this one
Watched practised.... ❤️
Sis I'm addicted ure teaching style avlo clear a puriuthu one more help enaku February month exam athukidaile C# program language video upload panni vitunga please its my kindly request
function lettert(){
name='abcd';
let random = name.charAt(Math.round(Math.random()*name.length));
console.log(random);
}
thanks mam very Use full video
let name = 'Ironman'
let letter = Math.floor(Math.random() * name.length);
let randomLetter = name.charAt(letter);
console.log(randomLetter)
❤
Thanks for uploading mam.. 🌸
akka oru topic or method complete pannu bothu oru exercise kodhunga akka plz, practice panna easy ya irrukum
let otpWord = "Mohamed";
let otplen = otpWord.length;
let rnotp = (Math.floor(Math.random() * otplen));
let otp = otpWord.charAt(rnotp);
console.log(otp);
Nandri Akka 💯🔥👍🏻
name.charAt(Math.random()*name.length-1)
let name = "LogicFirst"
let random = (Math.floor(Math.random()*name.length))
console.log(name.charAt(random))
✨️super akka
Ennaku oru doubt JavaScript ellam function dhana....
90%😂
teach me how to model pop up in javascript?
Mam bootstrap solli thara mudiumaa
let name= “Makesh”;
console.log(name[Math.floor(Math.random() * 6)]);
let name = "Bharathi"
console.log(name[Math.abs(Math.round(Math.random()*name.length)-1)])
please explain panna mutiuma
@@santhoshsurya2693 munnadi vdo pakk daa
let name = "shanmugam"
let output = name[Math.round(Math.random()*name.length-1)]
console.log(output);
Let name="vicky"
Console. log(name[Math. round(Math. random())])
wrong. u should generate random number based on the length of ur name
@@LogicFirstTamil Okk mam I will correct it
@@LogicFirstTamil Mam angular js react js videos podunga mam
let x='welcome'
x[Math.floor(Math.random()*(x.length))+1]
Undefined nu varuthu
Hi akka.... good evening...
let name = "Success"
let random =Math.floor(Math.random()*name.length)
name.charAt(random)
var naga="naga";
var len=naga.length;
console.log(naga[(Math.ceil(Math.random()*len))]);
function generate(){
const name = document.getElementById("name").value;
var tmpName = "";
for(var i = 0; i < name.length; i++){
var tmpIdx = Math.floor(Math.random()*name.length)+1;
tmpName += (tmpIdx < name.length && (!tmpName.includes(name.charAt(tmpIdx))))?name.charAt(tmpIdx):"";
}
document.getElementById("genresp").innerHTML = "Result :: " + tmpName;
}