Posts

Showing posts from November, 2024

FUNCTIONS IN PYTHON

 Functions in python Functions are used for call something while coding  like your own code line follow Python def text (text): print (text) text( "sample" ) Light/Dark M Copy

Conditions in js(JAVASCRIPT)

  Conditions in js conditions are if then else else if  like a copy of events TO DO THIS:- JavaScript let variable = 2 // The real if sample if ( variable + 2 = 5 ) { console.log ( "false" ) } else { console.log ( "true" ) } Light/Dark M Copy