What are Children Props in React? Complete Guide with Syntax and Examples (2026)

Image
What are Children Props in React? As you build React applications, you'll often create components that share the same layout but display different content. Instead of writing a new component for every small variation, React provides a simple and powerful solution called the  Children  prop. The  Children  prop is a special built-in prop that allows a component to receive and display whatever is placed between its opening and closing tags. This makes components more flexible because the structure stays the same while the content can change every time the component is used. For beginners, you can think of the  Children  prop as the inside content of a container. The container provides the design, while the content inside the container is supplied by the parent component. Understanding Children Props In React, data is usually passed to a component using props such as title,name or price. These values are passed as attributes. For example : <User name...

JavaScript Arithmetic Operators

 

JavaScript Arithmetic Operators



JavaScript  Arithmetic Operators 

    1] Addition (+)

    2]  Subtraction (-)

    3] Multiplication  (*)

    4] Exponentiation (**)

    5] Division  (/)

    6]  Modulus   (%)

    7]   Increment  (++)

     8]  Decrement (--)

  

         Example :-

  

Operators

 Name

Example

Result

 
      +

 
Addition

 
 6+2

 
8

      
      -

 
Subtraction

 
6 - 2

 
4

 
      *

 
Multiplication

 
6 * 2

 
12

   
     ** 

 
Exponentiation

 
2 **3

 
8

 
      /

 
Division

 
6 / 2

 
3

    
     %

 
Modulus

 
7 % 3

 
1

  
    ++    

 
Increment

 
 6 ++

 
7

 
     _ _
 

 
Decrement

 
6 - -

 
5


    1] Addition (+)     

Example (Source Code)  :-

let a= 1000
    b=  2000;
  document.write( "Addition of two number =",a+b);

  Output :-

Addition two number

    2]  Subtraction (-)

Example (source Code)   :-

let a= 4000
    b=  2000;
  document.write( "Subtraction of two number =",a-b);

  Output :-

subtraction of two number


    3] Multiplication  (*)

Example :-

let a= 4000
    b=  2000;
  document.write( "Multiplication of two number =",a*b);


  Output :-

multiplication of two number
4] Exponentiation (**)

Example :-

let a= 4
    b=  2;
  document.write( "Exponentiation of two number =",a**b);

  Output :-

Exponentiation of two  number


           


  5] Division  (/)


Example :-

let a= 4
    b=  2;
  document.write( "Division of two number =",a/b);


  Output :-

Division of two number


    6]  Modulus   (%)
Example :-

let a= 4
    b=  2;
  document.write( "Modulus of two number =",a%b);

  Output :-



    7]   Increment  (++)
Example :-

let a= 4
   
  document.write( "Increment of two number =",++a);

  Output :-

     8]  Decrement (--)

Example :-

let a= 4
   
  document.write( "Decrement of two number =",--a);

  Output :-

Decrement (--)


Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

HTML Input Type Submit Syntax and Example