From 539a22dd2ed026cb531df78701196f3498f5abd3 Mon Sep 17 00:00:00 2001 From: Kamrul Islam Shahin <44506464+shahin-cuet@users.noreply.github.com> Date: Fri, 30 Oct 2020 12:00:01 +0600 Subject: [PATCH] code indent --- 15_Day_Classes/15_day_classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15_Day_Classes/15_day_classes.md b/15_Day_Classes/15_day_classes.md index b49fc94..55ba535 100644 --- a/15_Day_Classes/15_day_classes.md +++ b/15_Day_Classes/15_day_classes.md @@ -605,7 +605,7 @@ class Student extends Person { ` and ${this.skills[this.skills.length - 1]}` let pronoun = this.gender == 'Male' ? 'He' : 'She' - let formattedSkills = skills ? `${pronoun} knows ${skills}` : '' + let formattedSkills = skills ? `${pronoun} knows ${skills}` : '' let info = `${fullName} is ${this.age}. ${pronoun} lives in ${this.city}, ${this.country}. ${formattedSkills}` return info