1) function proposal(thename, thecolor) {
// "+"-means conjunction, for example sentence 1 is sentence 2 in this case
// "alert"- is like "$x" in php
alert ("my name is" + thename + "and my favourite color is " + thecolor + ".")
}
proposal("gvanca", "green")
//result- "my name is gvanca and my favourite color is green"
2) function number(x,) {
return 8 * x
}
let number1 = number(2)
alert (number1)
//result- 8 * 2=16 so the answer is "16"
let name="giorgi"
let age= 27
function gender() {
alert "men"
}
We can write all this as an object
let human= {
name: "giorgi",
age: 27,
gender: "men",
//we can make function in objects too
men() {
alert "hello"
},
//also we can make object in objects
favanimal {
first:"dog",
second:"cat"
}
}
let numbers = [2, 3, 5, 6, 7, 8]
let myfavouritenumbers = ["1"," 2"," 3", "4"," 5"]
let myfavouritecolors = ["red", "green", "blue"]
let mynumbers = 1,78
//"push"-adds the given element to the array
//result- red, green, blue, yellow
myfavouritecolors.push("yellow")
//"splice"-Removes the element whose "address" we gave
//result- 1,2,4,5
myfavouritenumbers.splice(2, 1)
//[3]- find third number in array
//result-"6"
numbers[3]
//"tofixed"-Rounds the number
//rersult- "2"
mynumbers.tofixed()
<?php
function numbers($price, $discount) {
return $price - $price/100*$discount;
}
echo numbers(80,20); //result - "80-80/100*20=64"
echo numbers(100,50); //result - "100-100/100*50=50"
echo numbers(200,80); //result - "200-200/100*80=40"
git config git config --global user.name
git config --global user.email
ბრენჩის, სახელით "main", ნაგულისხმევად დაყენება
git config --global init.default branch main
git add filename
ან საქაღალდეში არსებული ყველა ფაილის დამატებისას git add --a
3. git directory (repository) - committed ფაილები ანუ COMMIT ბრძანებით მართვის სისტემაში (git-ში) შენახული ფაილების გარემო, იგივე რეპოზიტორი, საცავი, საქაღალდე.git add .
or git add --A
or git add --all
alternativly we can add each file by name:
git add <file name>
for remove added files from staging area:
git reset <filename>
or remove all files:
git reset
ამოცანა გვეუბნება, რომ ჩვენს მიერ გადაცემულ ტექსტს მოვაშოროთ ზედმეტი გამოტოვებები.
we have 2 ways: first is that we can do this without cycle and second is that we can use "while" cycle.
first:
<php?
function string($text) {
// explode- Breaks the sentence when it sees an omission (გახლეჩს
წინადადებას როცა შეხვდება გამოტოვება.)
$something = explode ( ' ' , $text );
$count = count($something);
for ($i=0; $i < $count; $i++) {
// If it encounters an empty space somewhere, it will get up and use the unset function to cut this empty space ( თუ შეხვდება სადმე სიცარიელე მაშინ ადგება და unset ფუნქციით ამოჭრის ამ სიცარიელეს )
if ( !$something [$i] ){
unset($something [$i];
}
}
return implode ( ' ', $something );
}
$text = " hello m y name is gvanca ";
echo string($text);
// result- "hello my name is gvanca"
<h2 id="section-1">Section 1</h2>
The id attribute is used to identify the element you want to target with the navigation link.
The value for the id attribute must be unique and surrounded by quotes.
Once the element you want to jump to has been marked with an id, you can target it with the anchor tag <a>
The hash character (#) is needed to tell the web browser that we are targeting a section of the same document.
<a href ="#s1">Jump to S1 </a>
<h2 id="s1">Section 1</h2>