comment – POFTUT

JavaScript Comments Tutorial with Examples

JavaScript Comments Tutorial with Examples

Comments are used to explain code and make it more readable by others in JavaScript programming language. Comments can be a single line, multiline or inline. Another useful usage of the comments is creating testing code and executing or preventing the execution of the testing code. Single-Line Comments Single line comments only comment on the … Read more

HTML Comments: How To Create and Use In HTML Code?

HTML Comments: How To Create and Use In HTML Code?

HTML is a very popular scripting or coding language used to create web pages. HTML provides different tags in order to create different units like textbox, color, paragraph, list, etc. While using HTML we may need to put some information about the code and tags. In this tutorial, we will learn how to create comments. … Read more

How To Write Comment Block In Batch File MS-DOS?

How To Write Comment Block In Batch File MS-DOS?

Windows MS-DOS very useful programming environment for Windows family operating system. In order to complete jobs easier, faster, and with less error system administrators generally use batch scripts. In order to remember or understand commands and functions written to the batch script we generally use comments or comment block. In this tutorial, we will look at … Read more

Linux Bash Comments Inline or Outline

Linux bash have a lot of different type of programming features. While using these features we can create very complex scripts or applications in bash. In order to take notes in a script we should use comments. Comments provides useful information for system administrators. Comment Bash In bash comments starts with # . In the … Read more

C Syntax and Basics

[rps-include post=6557] We have successfully compiled our application. But while compiling we have no detailed information about the program. In this chapter we will look basics of C programming language. Token The smallest part of a C program is tokens. Compilers start by reading source code and parsing tokens. If there is an unexpected token … Read more

Javascript Syntax and Basics

In this post we will start writing simple Javascript codes and run them on the browser. We will also look comments. Two Lines Of Code Our code is below. It is now two line and becoming more complex but not too much for our target. console.log(“Hello Poftut”); console.log(“By Poftut”); Here is two JavaScript line ended … Read more

Python Syntax Tutorial

PYthon is practical and readable programming language. Python have different syntax from popular programming languages like C, C++, C#, Java etc. Python syntax makes it easy to learn. In this tutorial we will look some aspect of Python programming language syntax. Identifier Identifier is the one of the main topics of all programming languages.  Identifiers … Read more