Tuesday, December 14, 2021

MIME content type

 MIME stands for Multipurpose Internet mail-extension.

MIME describes the response format sends by server to the client.

Syntax:

type/sub-type

Ex:text/html,application/json etc.

No comments:

Post a Comment

Clean code chapter 3(Robert C.martin)

  Summary: --------  1. Functions should hardly ever be 20 lines long.  2.Keep blocks (inside if, else, while, for, etc.) short.  Ideally, j...