8 Community Resources for Angular Developers To Improve Your Skills ππ
Write a JavaScript function to find the area of a triangle where lengths of the three of its sides are 5, 6, 7.
<script>
var side1 = 5;
var side2 = 6;
var side3 = 7;
var s = (side1 + side2 + side3)/2;
var area = Math.sqrt(s*((s-side1)*(s-side2)*(s-side3)));
console.log(area);
</script>
<script>
var side1 = 5;
var side2 = 6;
var side3 = 7;
var s = (side1 + side2 + side3)/2;
var area = Math.sqrt(s*((s-side1)*(s-side2)*(s-side3)));
console.log(area);
</script>
Bootstrap 5 alpha! π
Bootstrap is one of the open source that many developers love, including me. So what do we expect of the new changes when Bootstrap 5 is released?
Features β¨:
β’ jQuery removed
β’ Updated forms
β’ Enhanced grid system
β’ CSS custom properties by dropping support for Internet Explorer
Comming soon: RTL, offcanvas, and more π
Head to https://v5.getbootstrap.com to explore the new release. π₯
γ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈ
#Bootstrap #CSS
@ProgrammingTip
Bootstrap is one of the open source that many developers love, including me. So what do we expect of the new changes when Bootstrap 5 is released?
Features β¨:
β’ jQuery removed
β’ Updated forms
β’ Enhanced grid system
β’ CSS custom properties by dropping support for Internet Explorer
Comming soon: RTL, offcanvas, and more π
Head to https://v5.getbootstrap.com to explore the new release. π₯
γ°οΈγ°οΈγ°οΈγ°οΈγ°οΈγ°οΈ
#Bootstrap #CSS
@ProgrammingTip
Getbootstrap
Powerful, extensible, and feature-packed frontend toolkit. Build and customize with Sass, utilize prebuilt grid system and components, and bring projects to life with powerful JavaScript plugins.