Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Nov 17, 2023Dart: StatementsA statement is a unit of code that performs some action. In Dart, statements end with a semicolon. Semicolon are optional. There are two kinds of statements: Simple statements (usually one line of code) Block statements (having one or many blocks o...DiscussDart
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Oct 19, 2023Python scriptsKeywords: Python has a set of reserved words called keywords which have special meanings. Python has a total of 33 keywords compared to around 50 keywords in Java. The Python keywords are: andassertclasscontinuebreakdefdelelifelseexceptfinallyforfrom...DiscussPython SyntaxKeywords
Vishesh Raghuvanshivisheshraghuvanshi.hashnode.dev·Sep 22, 2023C-Programming StatementsC-Statements In C Programming, instructions are written in the form of statements. Expression Statements Expression statements in C are statements that contain expressions but do not return a value. Some examples of expression statements in C are: ...Discuss·6 likes·26 readsC ProgrammingC
Kiprotich Dominickiprotichdominic.hashnode.dev·Mar 8, 2023Expression vs StatementOn day 6(link) we dived into the scope of javascript and how javascript variables are visible or accessible in javascript programs. Specifically, it determines where a variable or function can be accessed and how long it remains in memory. Today we d...Discuss·83 readsJavascript 30 Concepts In 30JavaScript