Some Useful JavaScript Shorthand Techniques

Some Useful JavaScript Shorthand Techniques

বর্তমান সময়ে JavaScript হলো বহুল ব্যবহিত এবং শক্তিশালী প্রোগ্রামিং ভাষা। যা ওয়েব ডেভেলপমেন্টে ব্যাপকভাবে ব্যবহৃত হয়। Frontend এর পাশাপাশি Backend ও JavaScript সমানভাবে ব্যবহার হচ্ছে। সাধারণত Frontend এবং Backend ডেভেলপমেন্ট এ আমাদের JavaScript ব্যবহার করতে হয়। আর এই কোডবেসগুলো সংক্ষিপ্ত এবং পঠনযোগ্য করা গুরুত্ব অপরিসীম। এই ধারাবাহিকতায় নিম্নে JavaScript এর উল্লেখযোগ্য কিছু কোডবেস এর Shorthand নিয়ে বিস্তারিত আলোচনা করবো। আশা করি আপনারা উপকৃত হবেন এবং পেইজটি শেয়ার করতে ভুলবেন না। তাহলে শুরু করা যাক –


Some Useful JavaScript Shorthand Techniques

Declaring Variables Of JavaScript:


// Longhand
let x;
let y;
let z = “Notesaid24”;


// Shorthand
let x, y, z = “Notesaid24”;

 

Assignment Operators of JavaScript:


// Longhand
let x = x + y
let x = x - y

// Shorthand
let x += y;
let x -= y;

 

Switch Case of JavaScript:


// Longhand

switch (processing) {
  case 1:
    doProcessing();
    break;
  case 2:
    doProcessingElse();
    break;
}

 

// Shorthand
const cases = {
  1: doProcessing,
  2: doProcessingElse,
};

 

Template Literals of JavaScript:

 



// Longhand
const name = 'Notesaid24';
const greeting = 'Welcome, ' + name + '!';


// Shorthand
const name = 'Notesaid24';
const greeting = `Welcome, ${name}!`;

 

Multiline Strings of JavaScript:

JavaScript সাধারণত Multiline স্ট্রিং লিখতে হলে Concatenation বা Escape Characters ব্যবহার করা হয়। আমরা Template Literals বা backtick (``) ব্যবহার করেও Multiline স্ট্রিং লিখতে পারি। যেমন –

 


// Longhand Concatenation
const stringOne = 'Notesaid24 provides best educational resources';
const stringTwo = ' notes and guide. Stay with us';
const multilineStringConcat = stringOne.concat(stringTwo)


// Longhand Escape Characters
const multilineStringEscafe = "Notesaid24 provides best educational resources \n  notes and guide. Stay with us";

 

// Shorthand Template Literals বা backtick (``)
const multilineStringTelplateLiterals = `Notesaid24 provides best educational resources Notes and guide. Stay with us`

 

If Presence:

 


// Longhand
if (isExist === true) {
Something Happened
}
 
// Shorthand
if (isExist) {
Something Happened
}

Arrow Functions:

 


// Longhand
function sayHello(name) {
  console.log('Hello', name);
}
 
// Shorthand
const sayHello = name => console.log('Hello', name);

 

Default Parameter Values:

জাভাস্ক্রিপ্ট ES6 ফাংশনের ক্ষেত্রে ডিফল্ট Parameter ব্যবহার করা যায়। ফাংশনের মধ্যে যদি কোনো আর্গুমেন্ট পাস না করা হয় বা Undefined থাকে তাহলে Fallback হিসেবে আপনি Default Parameter পাস করতে পারেন। যেমন –


// Longhand
function greeting(name) {
  if (name === undefined) {
    name = 'Guest';
  }
  console.log('Hello', name);
}
 
// Shorthand
const greeting = (name = 'Guest') => console.log('Hello', name);

 

Short Circuit Evaluation:

 


// Longhand
if (options && options.size && options.colour) {
  doSomething();
}
 
// Shorthand
options?.size?.colour && doSomething();

 

Optional Chaining:

 


// Longhand
const street = user && user.address && user.address.street;

// Shorthand
const street = user?.address?.street;

 

Nullish Coalescing Operator:

 

Nullish Coalescing Operator সাধারণত null & undefined ভ্যালু এর পরিবর্তে ডিফল্ট ভ্যালু ব্যবহার করা যায়। যেমনঃ


// Longhand
const value = someValue !== null && someValue !== undefined ? someValue : defaultValue;
// Shorthand
const value = someValue ?? defaultValue;

 

Logical Assignment Operators:

 


// Longhand
if (!enabled) {
  enabled = true;
}
 
// Shorthand
enabled ||= true;

 

উপরিল্লোখিত জাভাস্ক্রিপ্ট Shorthand ব্যবহার করে আপনি আপনার কোডে, কোডের পুনারবৃত্তি এবং আপ্রোয়জনিয় কোড লিখা কমাতে পারবেন। আর এর মাধ্যমে আপনার কোডের Readability কয়েকগুণ বেড়ে যাবে। আশা করি সকল Shorthand আপনি অতি সহজে আয়ত্ব করে নিয়েছেন। এবং সব সময় অনুশীলনের মধ্যে রাখবেন যাতে করে কোড এ ভুল এড়ানো সম্ভব। এর বাহিরে আপনার যদি কোনো Shorthand জানা থাকে অবশ্যই কমেন্ট বক্সে জানাবেন। আর যদি কোনো ভুল দৃষ্টিগোচর হয় তাও জানাতে ভুলবেন না। আজকে এই পর্যন্ত সবাই ভালো থাকবেন। দেখা হবে অন্য কোনো পোষ্টে। আল্লাহ হাফেয।

COMMENTS

Name

Adjective,1,Adjective of Number,1,Adverb,1,Amplification,94,Application,19,Articles,2,Bangladesh cricket.,1,Business Letter,1,Case,1,Certificate,10,Class 10,82,Class 11,48,Class 12,48,Class 3,11,Class 4,17,Class 5,17,Class 6,7,Class 7,7,Class 8,47,Class 9,96,Clause,1,Complaint Letter,2,Composition,58,Computer,1,Conjunction,2,Contact Us Form,2,Coordinating Conjunction,1,CSS,27,CSS Form,1,CSS Modules,1,Dakhil Class 7,13,Dakhil Class 8,13,Dakhil Class 9,15,Degrees,2,Demonstrative Pronoun,1,Dialogue,18,Distributive Pronoun,1,E-book,45,Email,1,English Grammar,163,Error Fix,2,Essay,107,Express JS,8,Express Server,4,Express Server Create,1,Form,1,Gender,1,Git,1,Git Command,1,Grammar,1,H10 Error,1,Heroku,4,HSC Result,1,HTML,29,HTML & CSS,1,HTML Form,2,Indefinite Pronoun,1,Interjection,1,Interrogative Pronoun,1,Interview Question,2,Irregular Verb,1,J obs,1,JavaScript,45,Job Application,13,Jobs,12,Joining Letter,5,Language,1,Letter,91,Log in Form,1,Login Form,2,Madrasah Books,33,Madrasah Letter,11,Madrasah Level Books,9,Microsoft Word,2,MongoDB,3,Narration,4,NCTB Books,192,NCTB Books 2023,41,NCTB Books 2024,118,New Year Message,1,New Year SMS,1,Newspaper Report,14,Node,6,Node Command,1,Node JS,9,Node Server,2,Notice,6,Noun,2,NPM,2,Number,1,Paragraph,386,Participle,5,Parts of Speech,2,Person,1,Personal Pronoun,1,Phrase,9,Phrase And Idioms,6,Pomodoro Timer,2,Poster Writing,6,Preposition,17,Problem Solving,27,Programming,12,Programming eBook,45,Programming Project,30,Pronominal Adjective,1,Pronoun,1,Pronunciation,1,Punctuation,3,Railway,1,Ramadan,2,React,17,Reflexive Pronoun,1,Register Form,1,Regular Verb,1,Relative Pronoun,1,Request Letter,13,Resignation Letter,3,Responsive Form,1,Resume,6,Right Form of Verbs,3,School Level Books,11,Sentence,1,Short Composition,50,Sign in Form,2,Signup Form,1,Simple Adverb,1,Slogan,3,SMS,1,SQL,1,Story,37,Strong Verb,1,Subject & Predicate,1,Subordinate Clause,1,Subordinating Conjunction,1,Syllable,1,Tag Questions,1,Teachers Dairy,2,Teachers Guide,31,Teachers Guide 2024,67,Teachers Guide Books 2024,5,Tense,14,test status of Bangladesh in cricket,1,Tips & Tricks,8,Transformation of Sentence,15,Tutorial,59,TypeScript,18,Use of Conjunction,1,Verb,2,Verbal,1,Vercel,2,Vercel Deploy,2,Vercel Server,1,Vocabulary,6,Voice,3,Weak Verb,1,অনুচ্ছেদ,18,আবেদনপত্র,44,আমন্ত্রণপত্র,2,আমার বাংলা বই,12,ইসলামিক,231,উক্তি,3,চাকরির খবর,10,তৃতীয় শ্রেণি,25,দরখাস্ত,35,নিমন্ত্রণপত্র,2,নোটিশ,3,পত্র,51,প্রাথমিক বিজ্ঞান,13,প্রোগ্রামিং গল্প,25,বাণী,3,বাংলা নোটস,1,বাংলা রচনা,2,ব্যবসা সংক্রান্ত পত্র,1,ভাবসম্প্রসারণ,18,সাপ্তাহিক চাকরির খবর,13,সারমর্ম,5,সারাংশ,4,হ্যান্ডনোট,125,
ltr
item
Notesaid24 | Free Online Notes & Resources for Students: Some Useful JavaScript Shorthand Techniques
Some Useful JavaScript Shorthand Techniques
Some Useful JavaScript Shorthand Techniques
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJyfQhoJdB6BOqHGLrnbuILE3xuKCOfPQLOKl1i47uHaXpH2En_5ys56eNfXdYlCwhvuRVhdrLQM6yCZ3gYNtdGYZoFi207_3n2fks8lORFO44LVLTwyX3wS-wO143czmxechfIUNMxivtyMlOaoGpC5xpfV9MB6lljpFbSWSgrmXozi3RsNId2gQjaPII/s16000/JavaScript%20Shorthand%20Techniques.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiJyfQhoJdB6BOqHGLrnbuILE3xuKCOfPQLOKl1i47uHaXpH2En_5ys56eNfXdYlCwhvuRVhdrLQM6yCZ3gYNtdGYZoFi207_3n2fks8lORFO44LVLTwyX3wS-wO143czmxechfIUNMxivtyMlOaoGpC5xpfV9MB6lljpFbSWSgrmXozi3RsNId2gQjaPII/s72-c/JavaScript%20Shorthand%20Techniques.png
Notesaid24 | Free Online Notes & Resources for Students
https://www.notesaid24.com/2023/08/some-useful-javascript-shorthand.html?m=0
https://www.notesaid24.com/?m=0
https://www.notesaid24.com/
https://www.notesaid24.com/2023/08/some-useful-javascript-shorthand.html
true
251490074241553958
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Post of Content