Filter
Exclude
Time range
-
Near
#le vrai post : Pendant plusieurs années, j’ai construit des applications en tant que développeur full-stack. J’ai même fait les #100DaysOfJs lnkd.in/dM3PJqP8 à l’époque. Mais il y a toujours eu un domaine qui me fascinait en parallèle : la cybersécurité. Cette année j’ai décidé de franchir le pas. Je poursuis un #Executive #Master #Cyber #Security #Specializations , et je me lance dans un nouveau défi : #100DaysOfCyber 🔐 #100 jours pour partager ce que j’apprends ,concepts, outils, write-ups, ressources... Avec un angle qui me tient à cœur : #montrer comment le développement et la cybersécurité se complètent, pas comment ils s’opposent. #Un dev qui comprend la sécurité. #Un pentest qui comprend le code. Si toi aussi tu veux relever le défi, fais moi signe. @PamIbrahimaBaba @_makh0u #RenameIT #CyberSecurity #Pentesting #100DaysOfCyber #InfoSec #DevSec
J'ai passé des années en dev full-stack. Maintenant je plonge dans la cybersécurité. Je lance #100DaysOfCyber 🔐 Dev Sécurité. En public. Si tu veux relever le défi aussi, fais moi signe linkedin.com/posts/mahmoudba…
1
3
13
1,200
Day7: Today I worked on my Coin Flip Game Focused mainly on making it responsive across devices. Didn’t touch the styling & structure yet by God’s grace I’ll handle that tomorrow. JS looks /feels so frustrating but I will overcome this frustration 🤧 #100DaysOfJS
4
52
Day 2 of JavaScript from Scratch: Conditionals & Loops Today I explored how programs make decisions and repeat tasks. If-else, switch, while, and for loops — the building blocks of logic and control flow! #JavaScript #WebDevelopment #CodingDiaries #LearnInPublic #100DaysOfJS
5
33
2 Mar 2025
Learned & practiced Array Methods: •forEach() - Iterated through an array •filter() - Extracted even numbers •map() - Doubled array elements •reduce() - Summed all values Key Takeaway: Efficient array handling = cleaner code! #100DaysOfJS #JavaScript #CodeDaily
2
13
#javascript concept of the day 𝐮𝐧𝐝𝐞𝐟𝐢𝐧𝐞𝐝 method of Global object:- This property indicates that a variable has not been assigned a value, or not declared at all. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #developers
2
2
80
#javascript concept of the day parseFloat() method of Global object:- The parseFloat() method parses a value as a string and returns the first number. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #devlife #developers
2
2
71
#javascript concept of the day Do you know how big is Infinite value in JS, that' pretty huge Infinity = 1.797693134862315E 308; Negative Infinity = -1.797693134862316E 308; #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #devlife
2
4
80
#javascript concept of the day. Error 𝐧𝐚𝐦𝐞 property Six different values can be returned by the error name property: EvalError RangeError ReferenceError TypeError URIError #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #devlife
1
42
#javascript concept of the day. 𝐞𝐫𝐫𝐨𝐫𝐬 in JS:- The 𝐧𝐚𝐦𝐞 property sets or returns the name of an error. The 𝐦𝐞𝐬𝐬𝐚𝐠𝐞 property sets or returns an error message. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #devlife
2
2
48
#javascript concept of the day. 𝐞𝐱𝐭𝐞𝐧𝐝𝐬 method in Class: It's used to create a child class of another class (parent). The child class inherits all the methods from another class. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs
2
4
56
#javascript concept of the day. Array.unshift(): It adds new elements to the beginning of an array. It overwrites the original array. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #devlife #developers #react #growth #w3schools
2
2
104
#javascript concept of the day. Array.sort(): It sorts the elements as strings in alphabetical and ascending order It overwrites the original array #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #interviewprep #devlife #developers
2
44
#javascript concept of the day. Array.shift(): It removes the first item of an array. It changes the original array. It returns the shifted element. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #interviewprep #devlife #developers
2
35
#javascript concept of the day. Array.reverse(): It reverses the order of the elements in an array. It overwrites the original array. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #interviewprep #learninpublic #devlife #developer
2
38
#javascript concept of the day. Array.reduceRight(callbackFn): It executes a reducer function for each array element from right to left. It returns a single accumulated value. #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #interviewprep
3
2
47
#javascript concept of the day Array.push(el1, el2, ... , elN) :- It adds new items to the end of an array It changes the original array It returns the new length of array #javascript #100daysofjs #masterjs #buildinpublic #coding #shareinpublic #learninpublic #jobs #interviewprep
2
3
49
#javascript concept of the day. Array.map():- It creates and return a new array from calling a function for every array element It does not change the original array #javascript #buildinpublic #coding #learninpublic #100daysofjs #masterjs #shareinpublic #jobs #react
2
2
163
#javascript concept of the day Array.lastIndexOf() It returns the last index (position) of a specified value It returns -1 if value is not found By default the search starts at the last element and ends at the first #javascript #buildinpublic #learninpublic #100daysofjs #masterjs
3
90
#javascript concept of the day Array.join(separator): It returns an array as a string It does not change the original array Optional param (separator) :- It tells the delimiter between array elements, default is comma(,) #javascript #100daysofjs #masterjs #buildinpublic #coding
2
28
#javascript concept of the day. Array.includes(): It returns true if an array contains a specified value and false if value not found. It is case sensitive search. #javascript #buildinpublic #coding #learninpublic #100daysofjs #masterjs #shareinpublic #jobs #react #interviewprep
1
2
39